in reply to
How to de-reference a coderef?
No, if only for the fact it doesn't have to have a name:
my $code_ref = sub {print "Hello, $_[0]\n"};
[download]
Or it might have multiple names.
foo_bar
might have been imported from another package (or exported to another one).
Comment on
Re: How to de-reference a coderef?
Download
Code
In Section
Seekers of Perl Wisdom