5 lines
100 B
Perl
5 lines
100 B
Perl
|
$hash{fruit} = apple;
|
||
|
$hash{sandwich} = hamburger;
|
||
|
$hash{drink} = bubbly;
|
||
|
|
||
|
print "@{[%hash]}\n";
|