in reply to dynamic perl calls

So you might want to use something like this:
$ perl -wle 'sub f { print @_ }; my $x = "f"; $x->(3)' 3

If you work under use strict; (which is always recommended), you need no strict 'refs'; in the scope in which you do this call.