- or download this
use Data::Dumper;
my %hash = (
...
that => "two",
);
print Dumper(\%hash);
- or download this
$VAR1 = {
'that' => 'two',
'this' => 'one'
};
- or download this
use Data::Dumper::Simple;
my %hash = (
...
that => "two",
);
print Dumper(%hash);
- or download this
%hash = (
'that' => 'two',
'this' => 'one'
);