RosettaCodeData/Task/Associative-array-Creation/Perl-6/associative-array-creation-3.pl6
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

4 lines
87 B
Raku

say %h1{'key1'};
say %h1<key1>;
%h1<key1> = 'val1';
%h1<key1 three> = 'val1', -238.83;