Help for this page

Select Code to Download


  1. or download this
    my @factorials = map {
    
    ...
        };
    
        &{$_[0]}($_[0],$_)} (3,5,7,9);
    
  2. or download this
    sub make_call {
        goto $_[0];
    ...
        }, $_);
    
    } (3,5,7,9);