- or download this
...
my $key = <STDIN>;
...
} else {
$hash{$key} = $val;
}
- or download this
$VAR1 = {
'bar' => 'val3',
...
'val2'
]
};
- or download this
...
my $key = <STDIN>;
...
my $val = <STDIN>;
chomp($val);
push @{$hash{$key}}, $val;
- or download this
$VAR1 = {
'bar' => [
...
'val2'
]
};