in reply to Re: Wrong hash output
in thread Wrong hash output

Agree, and just wanted to say, when you're dumping, dump a reference to the hash and your output will be better. (Don't dump the hash itself)
use strict; use warnings; use Data::Dumper my %hash = (a=>1) print "hash: " . Dumper( {%hash} ); # not Dumper(%hash)
good luck!