Due to rather weird formatting in your message I hardly can understand what is
it all about. But before you can find an answer on how to get the array out of
the hash, try answering the following question: why do you use bare asterisk in
the hash initialization? What is its purpose over there? T
>> really means something like
{* => (morerocks => [marble sandstone granite chert pumice limestone])}
> Taking into account that => has tighter precedence than , what you get in:
my %h = *, a => [1,2,3];
> is actually the following data structure:
%( Whatever => Pair )
That's sort of what I sai