in reply to Does this ctor make sense?

What does Data::Dumper tell you?

Replies are listed 'Best First'.
Re^2: Does this ctor make sense?
by anaconda_wly (Scribe) on Jan 16, 2013 at 03:32 UTC
    Sorry I didn't know Data::Dumper, does it tell me more than simple print?

      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,

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