Help for this page

Select Code to Download


  1. or download this
            for (my $i=0; $i<=$#my_data;$i++)
    
  2. or download this
            for my $i (0 .. $#my_data)
    
  3. or download this
            for ($i=0; $i<=$#my_data;$i++)
            {print $my_data[$i], "\n";
            }
    
  4. or download this
            for (@my_data)
            {print $_, "\n";
            }