in reply to Common uses of "use"
use warnings FATAL => 'all'; use strict; #use diagnostics;
I have Data::Dumper as an editor macro/bindkey so I can slap it down whenever and wherever I need it. Other dumpers may have superior features, but this is the only Core module and, therefore, it's most portable.
use Data::Dumper; $Data::Dumper::Sortkeys=1; print Dumper(\%@foo);
|
|---|