Help for this page
print Dumper(%hash); # Dumps the result of evaluating the hash. Meh. print Dumper(\%hash); # Dumps the ref and the referenced hash. Good.
print Dumper(\$po); # Why?? print Dumper($po); # Good.