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


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);


§ George Sherston