http://www.perlmonks.org?node_id=52670


in reply to RE: Data::Dumper (Adam: Sample Usage)
in thread Data::Dumper

Here's an example of how I use Data::Dumper, on one line, during debugging. It produces a pretty clean output of the data structure:

print Data::Dumper->new([\%hash],[qw(hash)])->Indent(3)->Quotekeys(0)->Dump;