in reply to Re: Raku: problem with say() function (method?)
in thread Raku: problem with say() function

Thanks Rolf.

It's a little disconcerting, but the Hash docs don't explain the <> notation. As far as I can tell, it's the same as qw. I found docs on "Word quoting" here.

say <a b c> eqv ('a', 'b', 'c');   # OUTPUT: «True»

And, there are some examples at Raku By Example: Hashes:

say %person-age{'Joan'}; # accessing an element say %person-age<Ben>; # same as above but the quote-words operator