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 to 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]
- [Attributes][34]

Variables:

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

Loops and flow control:

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

Regular expressions:

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

Other features:

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


Other tricks, and meta-answers:

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


----------


**See Also:**

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


  [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#310083
  [35]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162357
  [36]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#161985
  [37]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#168947
  [38]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#172118
  [39]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#205627
  [40]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440
  [41]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163481
  [42]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#169592
  [43]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#205104
  [44]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162565
  [45]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#161976
  [46]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440
  [47]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162206
  [48]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163700
  [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#162601
  [52]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#167309
  [53]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#167809
  [54]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162842
  [55]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#189883
  [56]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#194796
  [57]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#205104
  [58]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163532
  [59]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162271
  [60]: http://stackoverflow.com/questions/132241/hidden-features-of-c
  [61]: http://stackoverflow.com/questions/9033/hidden-features-of-c
  [62]: http://stackoverflow.com/questions/75538/hidden-features-of-c
  [63]: http://stackoverflow.com/questions/15496/hidden-features-of-java
  [64]: http://stackoverflow.com/questions/61088/hidden-features-of-javascript
  [65]: http://stackoverflow.com/questions/63998/hidden-features-of-ruby
  [66]: http://stackoverflow.com/questions/61401/hidden-features-of-php
  [67]: http://stackoverflow.com/questions/101268/hidden-features-of-python