- or download this
my $method_ref = $obj_or_class->can('method');
- or download this
my $method_name = 'method';
- or download this
$obj_or_class->$method_ref()
- or download this
$obj_or_class->$method_name()
- or download this
$ref = sub { $obj_or_class->new(@_) }