#!/usr/bin/perl6
my %hash := {1=>[{a=>3, b=>4}]}; 
#(why this returns only element from array, not whole hash in array?);\
 say %hash<1>[0];
