Help for this page

Select Code to Download


  1. or download this
    for (my $i = $[; $i <= $#ary; $i++)
    {
      # ...
    }
    
  2. or download this
    foreach my $i ( $[ .. $#ary )
    {
       # ...
    }
    
  3. or download this
    foreach my $element (@ary)
    {
      # ...
    }