in reply to DumperX
I misremembered how to use Data::Dumper once, and wrote something like:
Took me quite a while to realize that Data::Dumper wasn't what was core dumping my program, the dump built-in was... :)use Data::Dumper; my $a; # build up complex thingy in $a # dump it out to try to debug what's wrong with it print dump($a);
|
|---|