Help for this page

Select Code to Download


  1. or download this
    for (0..$#array) {
        if (foo($array[$_])) {  
    ...
        } 
        other_stuff();
    }
    
  2. or download this
    my $i = 0; 
    for my $item (@array) {
    ...
        }
        other_stuff(); 
    }