http://www.perlmonks.org?node_id=1013488


in reply to Re: Does this ctor make sense?
in thread Does this ctor make sense?

Sorry I didn't know Data::Dumper, does it tell me more than simple print?

Replies are listed 'Best First'.
Re^3: Does this ctor make sense?
by Athanasius (Archbishop) on Jan 16, 2013 at 08:01 UTC

    Yes, and it’s a core module, so if you have Perl, you already have Data::Dumper:

    #! perl use strict; use warnings; use Data::Dumper; my %families = ( Flintstone => { husband => 'Fred', wife => 'Wilma', daughter => 'Pebbles', }, Rubble => { husband => 'Barney', wife => 'Betty', son => 'Bamm-Bamm', }, ); print Dumper(\%families), "\n";

    To get similar output with print alone, you would need to write your own loops.

    I didn't know Data::Dumper

    Seriously, get to know it as soon as possible, it’ll save you a lot of time. Or you might prefer one of the alternatives on , such as Data::Dump.

    Hope that helps,

    Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

Re^3: Does this ctor make sense?
by Anonymous Monk on Jan 16, 2013 at 08:04 UTC

    It tells you if the variable is blessed. (But so does plain ol' print)