Help for this page

Select Code to Download


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