http://qs1969.pair.com?node_id=26937


in reply to RE: Re: Complicated Nested Data Structures
in thread Complicated Nested Data Structures

Gotcha. No problem :) If all you want to do is print the contents of an array reference, just do:

print @{ $arrayref };

So, in your example, all you should have to do is:

print @{ $msgs[$command]->{message} }

assuming I understand the way your datastructure is setup. Hope that helps.