Help for this page

Select Code to Download


  1. or download this
    print Dumper(%hash);
    
  2. or download this
    print Dumper(\%hash);
    
  3. or download this
    $dump= Data::Dumper->Dump([[\%hash,\@array,$scalar]],[qw(*vars)]);
    my @vars=eval $dump;
    
  4. or download this
    $Data::Dumper::Purity=1;
    print Data::Dumper->new([\%foo],['*foo'])->Purity(1)->Dump;