Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    
    ...
    }
    
    die Dumper(%hash);
    
  2. or download this
    foreach my $line (@lines) {
        my $key = shift @$line;
    ...
            push @{$hash{$key}}, @$line;
        }
    }