2 lines
85 B
Raku
2 lines
85 B
Raku
my $h = {key1 => 'val1', 'key-2' => 2, three => -238.83, 4 => 'val3'};
|
|
say $h<key1>;
|
my $h = {key1 => 'val1', 'key-2' => 2, three => -238.83, 4 => 'val3'};
|
|
say $h<key1>;
|