Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save big-samantha/5502cd81c661d698bc15668234e1a7d4 to your computer and use it in GitHub Desktop.
Save big-samantha/5502cd81c661d698bc15668234e1a7d4 to your computer and use it in GitHub Desktop.
LOLcalhost :: ~ % pry 1 ↵
[1] pry(main)> foo = {}
=> {}
[2] pry(main)> foo.default= []
=> []
[3] pry(main)> foo['asdfsdf']
=> []
[4] pry(main)> foo['bar'].push '1'
=> ["1"]
[5] pry(main)> foo
=> {}
[6] pry(main)> foo['bar']
=> ["1"]
[7] pry(main)> foo.keys
=> []
[8] pry(main)> foo.inspect
=> "{}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment