Hi All,

Why does `$y =%x<<$z>>` work in the following and
`$y =%x<$z>` and `$y =%x<"$z"> do not work?

$ p6 'my Str %x=("Jan"=>"01", "Feb"=>"02");
      my Str $z="Jan";
      my $y =%x<<$z>>;
      say "$y";'
01

Why did I get it right?


Many thanks,
-T

Reply via email to