
#-----------------------------
$mref = sub { $obj->meth ( @_ ) };
# later...
$mref-> ( "args", "go", "here" );
#-----------------------------
$sref = \$obj->meth;
#-----------------------------
$cref = $obj->can ( "meth" );
#-----------------------------


