in reply to Question on arrays
for (@array) { ... } # is kind of like for ($i = 0; $_ = $array[$i], $i < @array; $i++) { ... } [download]