in reply to
my sub ?
Use anonymous subroutines.
my $sub = sub { # do something };
[download]
It doesn't work to declare "inner" subroutines because all subroutine names are visible at the package level.
Comment on
Re: my sub ?
Download
Code
In Section
Seekers of Perl Wisdom