in reply to Re^2: which use for any Perl elements?in thread which use for any Perl elements?
$a = sub { ... }; # called: $a->(); *b = sub { ... }; # called: b(); [download]
Ted Young