As Perl has almost all "esoteric" parts from the other lists, I'll tell you the one thing that Perl can't:
The one thing Perl can't do is have bare arbitrary URLs in your code, because the `//` operator is used for regular expressions.
Just in case it wasn't obvious to you what features Perl offers, here's a selective list of the maybe not totally obvious entries:
[Duff's Device][1] - [in Perl][2]
[Portability and Standardness][3] - [There are likely more computers with Perl than with a C compiler][4]
[A file/path manipulation class][5] - [File::Find works on even more operating systems than .Net does][6]
[Quotes for whitespace delimited lists][7] [and strings][8] - [Perl allows you to choose almost arbitrary quotes for your list and string delimiters][9]
[Aliasable namespaces][10] - Perl has these through glob assignments: `*My::Namespace:: = \%Your::Namespace`
[Static initializers][11] - Perl can run code in almost every phase of compilation and object instantiation, from `BEGIN` (code parse) to `CHECK` (after code parse) to `import` (at module import) to `new` (object instantiation) to `DESTROY` (object destruction) to `END` (program exit)
[Functions are First Class citizens][12] - just like in Perl
[Block scope and closure][13] - Perl has both
[Calling methods and accessors indirectly through a variable][14] - Perl does that too:
my $method = 'foo';
my $obj = My::Class->new();
$obj->$method( 'baz' ); # calls $obj->foo( 'baz' )
[Defining methods through code][15] - [Perl allows that too][16]:
*foo = sub { print "Hello world" };
[Pervasive online documentation][17] - [Perl documentation is online and likely on your system too][18]
[Magic methods][19] that get called whenever you call a "nonexisting" function - Perl implements that in [the AUTOLOAD function][20]
[Symbolic references][21] - you are well advised to stay away from these. [They will eat your children.][22] But of course, Perl allows you to offer your children to blood-thirsty demons.
[One line value swapping][23] - Perl allows list assignment
[Ability to replace even core functions with your own functionality][24] - `use subs 'unlink'; sub unlink { print 'No.' }` or
BEGIN{
*CORE::GLOBAL::unlink = sub {print 'no'}
};
unlink($_) for @ARGV
[1]: http://stackoverflow.com/questions/132241/hidden-features-of-c#132274
[2]: http://perlmonks.org/node=388976
[3]: http://stackoverflow.com/questions/132241/hidden-features-of-c#132269
[4]: http://activestate.com
[5]: http://stackoverflow.com/questions/9033/hidden-features-of-c#9401
[6]: http://search.cpan.org/perldoc?File::Find
[7]: http://stackoverflow.com/questions/9033/hidden-features-of-c#9406
[8]: http://stackoverflow.com/questions/9033/hidden-features-of-c#9114
[9]: http://perldoc.org/perlop.html
[10]: http://stackoverflow.com/questions/75538/hidden-features-of-c#78484
[11]: http://stackoverflow.com/questions/15496/hidden-features-of-java#47493
[12]: http://stackoverflow.com/questions/61088/hidden-features-of-javascript#61094
[13]: http://stackoverflow.com/questions/61088/hidden-features-of-javascript#61173
[14]: http://stackoverflow.com/questions/61088/hidden-features-of-javascript#61125
[15]: http://stackoverflow.com/questions/63998/hidden-features-of-ruby#64080
[16]: http://perldoc.perl.org/functions/sub.html
[17]: http://stackoverflow.com/questions/61401/hidden-features-of-php#61491
[18]: http://perldoc.com/
[19]: http://stackoverflow.com/questions/61401/hidden-features-of-php#61482
[20]: perldoc.perl.org/perlsub.html
[21]: http://stackoverflow.com/questions/61401/hidden-features-of-php#62525
[22]: http://perl.plover.com/varvarname.html
[23]: http://stackoverflow.com/questions/101268/hidden-features-of-python#102037
[24]: http://stackoverflow.com/questions/101268/hidden-features-of-python#101744