- or download this
(sub {... magic(...) ... )->(args)
- or download this
use strict;
{
my $coderef;
($coderef = sub { ... $coderef->(...) ...)->(args);
}
- or download this
use strict;
...
my $coderef;
($coderef = sub {return unless $_[0] > 0; print "$_[0]\n"; $codere
+f->($_[0]-1)})->(4);
}