in reply to Data Dump / Tool To View Hash Structure Easily?

Well you already mentioned Data::Dump

DB<143> use Data::Dump qw/dd/ DB<144> dd { A=>{ a=>1},B=>{b=>2}} { A => { a => 1 }, B => { b => 2 } }

Which I prefer, but Data::Dumper is core.

Cheers Rolf

( addicted to the Perl Programming Language)