- or download this
warn Data::Dumper->Dump(
foo => $foo,
...
array => \@array,
that => \%that,
);
- or download this
warn Dump {
foo => $foo,
...
#vs
warn Dump [ $foo, \%this, \@array, \%that ];
- or download this
my $dumper = Data::Dumper->new( purity => 1, terse => 1, deepcopy => 1
+ );
warn $dumper->Dump( [ $foo, \%this, \@array, \%that ] );