Help for this page

Select Code to Download


  1. or download this
    foreach my $item (@array)
    {
      print($item);
    }
    
  2. or download this
    for (@array)  # note "for" and "foreach" are synonyms
    {
      print;
    }
    
  3. or download this
    print for @array;