Help for this page
for (0..$#array) { if (foo($array[$_])) { ... } other_stuff(); }
my $i = 0; for my $item (@array) { ... } other_stuff(); }