Help for this page

Select Code to Download


  1. or download this
    foreach my $i (0 .. 100)
    
  2. or download this
    foreach my $element (@array) { print $element; }
    
  3. or download this
    foreach my $i (0 .. 9) { print $array[$i] }
    
  4. or download this
    my $i = 0;
    foreach my $element (@array) { print "$i $element"; $i++ }
    
  5. or download this
    my $i = -1;
    foreach my $element (@array) { $i++; print "$element $i"; }