- or download this
if (substr($_, 0, 4) eq "sub ")
- or download this
for ($intree->{contents})
- or download this
for my $contents ($intree->{contents})
- or download this
if (ref($contents) eq 'CODE') {
return $contents->(
...
evalTree($intree->{right}, $param),
);
}
- or download this
sub func { ... }
my $ref = \&func;
- or download this
my $ref = sub { ... };