Help for this page

Select Code to Download


  1. or download this
      foreach my $foo (@bar) { $foo .= 'ack' ; ... } ;
    
  2. or download this
      foreach (@bar) { $_ .= 'ack' ; ... } ;
    
  3. or download this
      foreach (@bar) { my $s = $_ . 'ack' ; ... } ;