in reply to Re^3: Dumping variables but DRY and simple
in thread Dumping variables but DRY and simple
# named printing is still not DRY, but much better than: # print Data::Dumper->Dump( [$ref], ['*ref'] ); print '$ref = ', pp($ref), "\n";
yeah but thats core...
use Data::Dumper qw/Dumper/; print '$ref = ', Dumper($ref), "\n";
So really a big gain if it's not DRY?
Cheers Rolf
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Dumping variables but DRY and simple
by rubasov (Friar) on Mar 27, 2010 at 15:14 UTC |