Skip to content

Instantly share code, notes, and snippets.

@tahnok
Created June 5, 2012 19:38
Show Gist options
  • Save tahnok/2877253 to your computer and use it in GitHub Desktop.
Save tahnok/2877253 to your computer and use it in GitHub Desktop.
Default hash behaviour
> a = Hash.new([])
=> {}
> a[:one]
=> []
> a[:one] << "item"
=> ["item"]
> a[:one]
=> ["item"]
> a => {} #WAT???
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment