#!perl6 use v6; my %hash = ( 'a' => 97, 'b' => 98, 'c' => 99 ); my $key = 'c'; say %hash<<$key>>;