in reply to Re: Multidimesional hashs in Perl, C++, C# and Perl6
in thread Multidimesional hashs in Perl, C++, C# and Perl6

Shortened using the new placeholder variables:
my %hash = ( A => { A => 1, B => 2 }, B => { A => 4, B => 8 }, ); say "$^k - $^v" for %hash<B>.kv;