in reply to Re^2: Can I auto-save and restore global variables?
in thread Can I auto-save and restore global variables?

Data::Dumper is more flexible than you think :)
sub dd { use Data::Dumper; print Data::Dumper->new([@_])->Sortkeys(1) ->Indent(1)->Useqq(1)->Dump . "\n"; }
  • Comment on Re^3: Can I auto-save and restore global variables? (Data::Dumper oop interface)
  • Download Code

Replies are listed 'Best First'.
Re^4: Can I auto-save and restore global variables? (Data::Dumper oop interface)
by davehorsfall (Novice) on Jul 26, 2014 at 07:19 UTC

    Gawd... I'm gonna have to start using OO Perl; I'm familiar with C++ etc, but I have a strong C background.

    Thanks for the brief tutorial :-)

    -- Dave