Help for this page

Select Code to Download


  1. or download this
    while (<DATA>) {
       my ($key, $value) = /(\S+) (.*)/ or next;    # or:
    ...
       $hash{$key} = $value;                        # or:
       push(@{$hash{$key}}, $value);
    }