6 lines
118 B
Perl
6 lines
118 B
Perl
|
%hash = (
|
||
|
fruit => apple,
|
||
|
sandwich => hamburger,
|
||
|
drink => bubbly,
|
||
|
);
|
||
|
print "$hash{fruit}\n";
|