Help for this page

Select Code to Download


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