Help for this page

Select Code to Download


  1. or download this
          $href{$1} = $2 if $_ =~ /(\S+)\s+(\S+)/;
    
  2. or download this
          push @{$href{$1}}, $2 if $_ =~ /(\S+)\s+(\S+)/;
    
  3. or download this
       while (my ($key, $value) = each(%href)) {
              print "$key, (@{$value})\n";
       }