http://qs321.pair.com?node_id=1107514


in reply to how to call a sub via variable in library

Thank you all for your input and responses. I got to spend a full day working reading perl documentation and learning exactly what does not work ;). Here is what I found and what worked....

Worked

my $coderef = \&{$testname}; $system = $coderef->($self, $system); #test

should have worked based on documentation but doesnt

$self->$testname($system);

I'm sorry that I did not get the example code down smaller and will try to do so so any future finders might understand more easily. Y'alls help is a life saver.