Help for this page

Select Code to Download


  1. or download this
    for (my $i = 0; $i < @array; $i++) {
        my $item  = $array[$i];
        do_something_with($item, $i);
    }
    
  2. or download this
    my $i;
    foreach (@array) {
        do_something_with($item, $i++);
    }
    
  3. or download this
    for my $i (0..$#array) {
        do_something_with($array[$i], $i);
    }