What are some really useful but esoteric language features in Perl that you've actually been able to employ to do useful work?

Guidelines:

- Try to limit answers the Perl core and not CPAN
- Please give an example and a short description


----------

##Hidden Features also found in other languages' Hidden Features:##

(These are all from [Corion's answer][1])

- [C#][2]
 - Duff's Device
 - Portability and Standardness
 - Quotes for whitespace delimited lists and strings
 - Aliasable namespaces
- [Java][3]
 - Static Initalizers
- [JavaScript][4]
 - Functions are First Class citizens
 - Block scope and closure
 - Calling methods and accessors indirectly through a variable
- [Ruby][5]
 - Defining methods through code
- [PHP][6]
 - Pervasive online documentation
 - Magic methods
 - Symbolic references
- [Python][7]
 - One line value swapping
 - Ability to replace even core functions with your own functionality

##Other Hidden Features:##

Operators:

- [The bool quasi-operator][8]
- [The flip-flop operator][9]
  - Also used for [list construction][10]
- [The `++` and unary `-` operators work on strings][11]
- [The repetition operator][12]
- [The spaceship operator][13]
- [The || operator (and // operator) to select from a set of choices][14]
- [The diamond operator][15]
- [Special cases of the `m//` operator][16]
- [The tilde-tilde "operator"][17]

Quoting constructs:

- [The qw operator][18]
- [Letters can be used as quote delimiters in q{}-like constructs][19]
- [Quoting mechanisms][20]

Syntax and Names:

- [There can be a space after a sigil][21]
- [You can give subs numeric names with symbolic references][22]
- [Legal trailing commas][23]
- [Grouped Integer Literals][24]
- [hash slices][25]
- [Populating keys of a hash from an array][26]

Modules, Pragmas, and command-line options:

- [use strict and use warnings][27]
- [Taint checking][28]
- [Esoteric use of -n and -p][29]
- [CPAN][30]
- [`overload::constant`][31]
- [IO::Handle module][32]
- [Safe compartments][33]

Variables:

- [Autovivification][34]
- [The `$[` variable][35]
- [tie][36]
- [Dynamic Scoping][37]
- [Variable swapping with a single statement][38]

Loops and flow control:

- [Magic goto][39]
- [`for` on a single variable][40]
- [continue clause][41]
- [Desperation mode][42]

Regular expressions:

- [The `\G` anchor][43]
- [`(?{})` and '(??{})` in regexes][44]

Other features:

- [The debugger][45]
- [Special code blocks such as BEGIN, CHECK, and END][46]
- [The `DATA` block][47]
- [New Block Operations][48]
- [Source Filters][49]
- [Signal Hooks][50]
- [map][51] ([twice][52])
- [Wrapping built-in functions][53]
- [The `eof` function][54]
- [The `dbmopen` function][55]
- [Turning warnings into errors][56]


Other tricks, and meta-answers:

- [cat files, decompressing gzips if needed][57]
- [Perl Tips][58]


----------


**See Also:**

  - [Hidden features of C][59]
  - [Hidden features of C#][60]
  - [Hidden features of C++][61]
  - [Hidden features of Java][62]
  - [Hidden features of JavaScript][63]
  - [Hidden features of Ruby][64]
  - [Hidden features of PHP][65]
  - [Hidden features of Python][66]


  [1]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162257
  [2]: http://stackoverflow.com/questions/132241/hidden-features-of-c#
  [3]: http://stackoverflow.com/questions/15496/hidden-features-of-java
  [4]: http://stackoverflow.com/questions/61088/hidden-features-of-javascript
  [5]: http://stackoverflow.com/questions/63998/hidden-features-of-ruby
  [6]: http://stackoverflow.com/questions/61401/hidden-features-of-php
  [7]: http://stackoverflow.com/questions/101268/hidden-features-of-python
  [8]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094
  [9]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162058
  [10]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#205627
  [11]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162004
  [12]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162075
  [13]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#161943
  [14]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162239
  [15]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162152
  [16]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162249
  [17]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162060
  [18]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163416
  [19]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094
  [20]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163374
  [21]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094
  [22]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094
  [23]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163416
  [24]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601
  [25]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#168925
  [26]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#195254
  [27]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440
  [28]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440
  [29]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162085
  [30]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163541
  [31]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601
  [32]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#164255
  [33]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163725
  [34]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162357
  [35]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#161985
  [36]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#168947
  [37]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#172118
  [38]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#205627
  [39]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440
  [40]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163481
  [41]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#169592
  [42]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#205104
  [43]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162565
  [44]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#161976
  [45]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440
  [46]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162206
  [47]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163700
  [48]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601
  [49]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601
  [50]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601
  [51]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#167309
  [52]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#167809
  [53]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162842
  [54]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#189883
  [55]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#194796
  [56]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#205104
  [57]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163532
  [58]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162271
  [59]: http://stackoverflow.com/questions/132241/hidden-features-of-c
  [60]: http://stackoverflow.com/questions/9033/hidden-features-of-c
  [61]: http://stackoverflow.com/questions/75538/hidden-features-of-c
  [62]: http://stackoverflow.com/questions/15496/hidden-features-of-java
  [63]: http://stackoverflow.com/questions/61088/hidden-features-of-javascript
  [64]: http://stackoverflow.com/questions/63998/hidden-features-of-ruby
  [65]: http://stackoverflow.com/questions/61401/hidden-features-of-php
  [66]: http://stackoverflow.com/questions/101268/hidden-features-of-python