Help for this page

Select Code to Download


  1. or download this
    foreach my $thing (@array) {
            process($thing);
    ...
            last if too_many($thing);
            ....
    }
    
  2. or download this
    for my $case ( @cases ) {
        my $is_interesting = eval { interesting($case) };
    ...
           print "$case had errors:$@";
        }
    }