bjeanes (owner)

Revisions

gist: 198624 Download_button fork
public
Public Clone URL: git://gist.github.com/198624.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
>> 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