Help for this page

Select Code to Download


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