- or download this
my ($meth,@parts)=/.../;
exists($dispatch{$meth}) and $disptach{$meth}->(@parts);
- or download this
sub blah {
$foo->SUPER::blah(@_);
...
}
- or download this
use warnings::register;
- or download this
sub foo {
my $array_ref=shift;
...
and die "Can't use anything but an array";
...
}