Skip to content

Instantly share code, notes, and snippets.

@bjeanes
Created October 1, 2009 01:10
Show Gist options
  • Select an option

  • Save bjeanes/198624 to your computer and use it in GitHub Desktop.

Select an option

Save bjeanes/198624 to your computer and use it in GitHub Desktop.
>> h = Hash.new(Hash.new)
=> {}
>> h["1"]["2"]
=> nil
>> h["1"]["2"] = "2"
=> "2"
>> h["2"]
=> {"2"=>"2"}
>> h["1"].object_id == h["2"].object_id
=> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment