Help for this page

Select Code to Download


  1. or download this
    foreach my $i (0..$#array)
    {
         print "$i: $array[$i]\n";
    }
    
  2. or download this
    my $i = 0;
    foreach my $e (@array)
    {
         print "$i: $e\n";
         $i++;
    }
    
  3. or download this
    for (my $i = 0; $i < @array; $i++)
    {
         print "$i: $e\n";
    }