Help for this page

Select Code to Download


  1. or download this
    print Dumper $quux;
    
  2. or download this
    use IO::File;
    Dumper->print($quux);
    
  3. or download this
    print Data::Dumper->new([$quux],['quux'])->Dump(),"\n";
    
  4. or download this
    # we have large cyclic structures: disable pretty indent, enable purit
    +y mode.
    print Data::Dumper->new([$quux],['quux'])->Purity(1)->Indent(1)->Dump(
    +),"\n";