in reply to Reference to a hash in an array of hashes

An easier way of viewing the internal structure of data is to use Data::Dumper:

use Data::Dumper; print Data::Dumper->Dumper(@array);

----
I wanted to explore how Perl's closures can be manipulated, and ended up creating an object system by accident.
-- Schemer

Note: All code is untested, unless otherwise stated