Created
May 30, 2018 23:15
-
-
Save big-samantha/5502cd81c661d698bc15668234e1a7d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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