in reply to Re: Ending up with duplicate keys in a hash?\
in thread Ending up with duplicate keys in a hash?\

Another reason to use Data::Dump instead.
  • Comment on Re^2: Ending up with duplicate keys in a hash?\

Replies are listed 'Best First'.
Re^3: Ending up with duplicate keys in a hash?\
by hotchiwawa (Scribe) on Jan 10, 2016 at 16:46 UTC
    Yep Data::Dumper is a good library (thanks) :)

    But you can also use Data::Printer which can colored chars, limit the depth levels, set the indent size, multilines...
    There are a lot of options.

    https://metacpan.org/pod/Data::Printer

    Use p instead of print/say.
    p $href;