in reply to dumping variables automatically with their name?

As well as Data::Dumper::Simple and Data::Dumper::Names I wrote Data::Dumper::Declare (but it's BackPAN-only now). I think my version provides slightly nicer output than the other two, but I removed it from CPAN because I think there are enough modules to do this already.

use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name
  • Comment on Re: dumping variables automatically with their name?