Help for this page

Select Code to Download


  1. or download this
    my @hashes = map {{split}} <>; #Ain't perl neat?
    
  2. or download this
    foreach (@hashes)
          my %hash = %{$_};
    ...
          }
          print "\n";
    }
    
  3. or download this
    my @arrays = map {[split]} <>; # Got it?