require 'pp' h = {} h[:name] = "Robert" h[:nickname] = "Bob" h[:age] = 43 h[:email_addresses] = {:home => "[email protected]", :work => "[email protected]"} pp h[:email_addresses] # {:home=>"[email protected]", :work=>"[email protected]"} pp h