Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: RFC: Data::Dumper::Simple

by Aristotle (Chancellor)
on Jul 31, 2004 at 19:10 UTC ( [id://378963]=note: print w/replies, xml ) Need Help??

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 ] );
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://378963]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (4)
As of 2024-04-19 04:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found