Help for this page

Select Code to Download


  1. or download this
    my @flist = ( sub {0 * $_[0]}, sub {1 * $_[0]}, sub {2 * $_[0]});
    
  2. or download this
    foreach my $f (@flist)
    {
        print $f->(2), "\n";
    }