5 lines
121 B
Perl
5 lines
121 B
Perl
|
$hash{fruit} = apple;
|
||
|
$hash{sandwich} = hamburger;
|
||
|
$hash{drink} = bubbly;
|
||
|
|
||
|
print map "$_ => $hash{$_}\n", keys %hash;
|