Dynamic sub references
#!/usr/local/bin/perl
use strict; # always
*dynamicsub = \&{'somepackage::somesub'};
&dynamicsub('blah blah') if defined(&dynamicsub);
The line in bold above is pretty cool if you're a Perl hack. Dynamically referencing and invoking a routine (regardless of what package it may be in) like that is pretty handy.