in reply to
help on hashes
For printing out the contents of
any
data structure you'll find
Data::Dumper
a delight. Feed it your data structure as a reference and you're off to the races:
use Data::Dumper; print Dumper(\@rows);
[download]
§
George Sherston
Comment on
Re: help on hashes
Download
Code
In Section
Seekers of Perl Wisdom