Help for this page

Select Code to Download


  1. or download this
    foreach (@Array) { code here }
    
  2. or download this
    foreach (@Array) {
       foreach my $tmp (keys %{$Array[$_]}) { 
          print "$tmp\n" 
       }
    }
    
  3. or download this
    foreach (@Array) {
       foreach my $tmp (keys %$_) { 
          print "$tmp\n" 
       }
    }