Help for this page

Select Code to Download


  1. or download this
    for (@array1, @array2, @array3) {
        print "met $_";
    }
    
  2. or download this
    my $body = sub {
        print "met $_";
    ...
    for (@array1) { &$body() }
    for (@array2) { &$body() }
    for (@array3) { &$body() }