- or download this
x = [ 'apple', 'banana', 'orange' ]
for i, val in enumerate(x): print i, val
- or download this
0 apple
1 banana
2 orange
- or download this
x = [ 'apple', 'banana', 'orange' ]
x.each_with_index { |val, i| print "#{i} #{val}\n" }
- or download this
use List::MoreUtils qw(each_array);
my @x = ( 'apple', 'banana', 'orange' );
...
while ( my ($i, $val) = $it->() ) {
print "$i $val\n";
}
- or download this
my @x = ( 'apple', 'banana', 'orange' );
while ( my ($i, $val) = each @x ) {
print "$i $val\n";
}