in reply to How to retrieve right info from list of anonymous hashes
perlreftut teaches you how to deal with such hash references. To get a quick overview what's inside a variable, I can recommend Data::Dumper, which produces perl code that reproduces the original data structure.
use Data::Dumper; print Dumper \@info;
|
|---|