in reply to Re: dumping a hash
in thread dumping a hash

Also note that it should be
%hash = (this => "one", that => two);
Instead of
%hash = {this => "one", that => two};
You use {} to initialize a hash reference, and () to initialize an actual hash.