Help for this page

Select Code to Download


  1. or download this
    my @abc;
    for my $m qw/a b c/ {
        push @abc, sub { $m };
    }
    print $_->() . "\n" for @abc;