in reply to Dump the key value pairs in a hash
print map { "Key: $_ has Value:$self->{$_}\n" } keys %$self; # ~~ ~ [download]
Or, use Data::Dumper:
use Data::Dumper; ... print Dumper($self); [download]