4 lines
77 B
Raku
4 lines
77 B
Raku
my %hash{Any}; # same as %hash{*}
|
|
class C {};
|
|
my %cash{C};
|
|
%cash{C.new} = 1;
|