Just wondering: is there a way to make a second Dumper shape in this next snippet?
use Modern::Perl;
use Data::Dumper::Simple;
my $data = { name => 'jim', age => 21, updated => time() };
my $timestr = localtime($data->{updated});
say Dumper($data->{updated}, $timestr);
say Dumper($data->{updated}, scalar localtime($data->{updated} ));
source
share