- or download this
my $sub = \&$name;
$sub->( @args )
- or download this
die "No sub named `$name`" if !defined( &$sub );
- or download this
$invocant->$name( @args )
- or download this
my $method = $invocant->can( $name );
$invocant->$method( @args )
- or download this
die "No method named `$name`" if !$method;