Maybe Data::Dumper or Data::Dump. The latter is slightly more readable, but the former has the advantage of being bundled with Perl. (That is, you already have it installed!)
use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name
Comment on Re: Data Dump / Tool To View Hash Structure Easily?