4 lines
87 B
Raku
4 lines
87 B
Raku
say %h1{'key1'};
|
|
say %h1<key1>;
|
|
%h1<key1> = 'val1';
|
|
%h1<key1 three> = 'val1', -238.83;
|