http://qs321.pair.com?node_id=657190


in reply to Re: Deciphering the output from Data::Dumper
in thread Deciphering the output from Data::Dumper

Methinks FunkyMonk hit this on the head....
and adding Data::Dumper to the mix above,
use Data::Dumper; print Dumper %hash;
gives you reasonable (readable) output:
$VAR1 = 'Pierce'; $VAR2 = { 'Jerrad' => '96' }; $VAR3 = 'Lateur'; $VAR4 = { 'Bart' => '97' }; $VAR5 = 'Miller'; $VAR6 = { 'Katie' => '86' }; $VAR7 = 'Unknown'; $VAR8 = { 'planetscape' => '101' };