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


in reply to Re^2: How to map function name to coderef?
in thread How to map function name to coderef?

Yes, there are ways of fooling strict. It's simpler and clearer to just turn it off in the code in question.

my $func_name = 'f'; my $cr = do { no strict 'refs'; \&$func_name }; say $cr->();