10 lines
192 B
Raku
10 lines
192 B
Raku
$h1{fruit} = apple;
|
|
$h1{sandwich} = hamburger;
|
|
$h1{drink} = bubbly;
|
|
|
|
$h2{cake} = chocolate;
|
|
$h2{pie} = blueberry;
|
|
$h2{'ice cream'} = pecan;
|
|
|
|
%h3 = (%h1, %h2);
|
|
print $h3{'ice cream'}; |