# Hashes

    my %hash =
    	1 => "one",
    	2 => "two",
    	3 => "three";

    say %hash{'2'};  # no bare words allowed, error otherwise
    say %hash<2>;    # use autoquote operator for bareword