require 'pp' h = {} h[:name] = "Robert" h[:nickname] = "Bob" h[:age] = 43 h[:email_addresses] = {:home => "[email protected]", :work => "[email protected]"} PP::pp(h, $stderr, 50)