http://www.perlmonks.org?node_id=11124839

misterperl has asked for the wisdom of the Perl Monks concerning the following question:

Hello respected ones!

I want to call

$self->$mysub ( $myargs)

my usual approach is something like

 &$self->$mysub ( eval $myargs )

which has the undesirable action of adding "main::" in front of $self and of course blowing up the syntax. I also tried "eval" instead of && no joy..

TY and Happy Holidays!