10 lines
135 B
Perl
10 lines
135 B
Perl
|
%hash = ();
|
||
|
print %hash;
|
||
|
|
||
|
print "\n";
|
||
|
|
||
|
$hash{fruit} = apple;
|
||
|
$hash{sandwich} = hamburger;
|
||
|
$hash{drink} = bubbly;
|
||
|
print %hash;
|