Skip to content

Instantly share code, notes, and snippets.

Created April 14, 2013 22:22
Show Gist options
  • Save anonymous/5384495 to your computer and use it in GitHub Desktop.
Save anonymous/5384495 to your computer and use it in GitHub Desktop.
irb(main):008:0> a = Hash.new { [] }
=> {}
irb(main):010:0> a[10]
=> []
irb(main):011:0> a[10] << 'test'
=> ["test"]
irb(main):012:0> a[10]
=> []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment