in reply to Re^3: Automatic Loop Counter not in perlin thread Automatic Loop Counter not in perl
my @array = qw{zero one two}; for my $i (0..$#array){ for ($array[$i]) { print qq{$i\t$_\n}; } } [download]