in reply to Data::Dumper question

I have to admit to, even in OO code, never using the OO interface to Data::Dumper - I use something along the lines of...
use Data::Dumper; . . print Dumper $some_ref; # Dump single structure . . # Dump multi structures - providing non-default names for each print Data::Dumper->Dump [$ref1, $ref2],[qw/ref1 ref2/];
A user level that continues to overstate my experience :-))