Skip to content

Instantly share code, notes, and snippets.

@alfie-max
Created October 31, 2017 14:49
Show Gist options
  • Save alfie-max/632c7d4a82652c6eafb14e975a5e6c96 to your computer and use it in GitHub Desktop.
Save alfie-max/632c7d4a82652c6eafb14e975a5e6c96 to your computer and use it in GitHub Desktop.
2.3.1 :031 > a = Hash.new([])
=> {}
2.3.1 :032 > a[:b]
=> []
2.3.1 :033 > a[:b].push(4)
=> [4]
2.3.1 :034 > a
=> {}
2.3.1 :035 > a[:b]
=> [4]
2.3.1 :036 >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment