require 'pp'h = {}h[:name] = "Robert"h[:nickname] = "Bob"h[:age] = 43h[:email_addresses] = {:home => "bob@example.com", :work => "robert@example.com"}PP::pp(h, $stderr, 50)