Skip to content

Instantly share code, notes, and snippets.

@jneen
Created December 13, 2010 16:03
Show Gist options
  • Save jneen/739145 to your computer and use it in GitHub Desktop.
Save jneen/739145 to your computer and use it in GitHub Desktop.
what the hell
>> h = Hash.new { |h, k| h[k] = Hash.new(&h.default_proc) }
=> {}
>> h[1][2] = 3
=> 3
>> h[1][2][4]
=> 0
>> # wtf?
@tenderlove
Copy link

irb(main):007:0> 3[4]
=> 0
irb(main):008:0> 

See here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment