The answer is: Accessing array or hash items with a proper sigil!
When you are learning Perl, it is very difficult to accept that you have to write it as $hash{key}
, not %hash{key}
.
When you have a background in Perl and are writing in Raku, you will often spell it like $hash<key>
instead of %hash<key>
.