in reply to How to retrieve right info from list of anonymous hashes
The module in CPAN don't give an example of how to do thisWell, it would be too much to expect from every CPAN module that uses hashes to explain to the user to access a hash.
Try something like:
Or use your favourite serializer.foreach my $process (@info) { while (my ($k, $v) = each %$process) { print "$k => $v\n"; } print "\n"; }
|
|---|