Last active
August 19, 2018 14:32
-
-
Save mehdi-farsi/682321748b9feb5fbabf59ecf88f3fee 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
home.street # => "Broadway" | |
home[:city] # => "NYC" | |
home['zip'] # => 10040 | |
home.not_exist # => NoMethodError: undefined method `not_exist' | |
home[:not_exist] # => NameError: no member 'not_exist' in struct | |
home['not_exist'] # => NameError: no member 'not_exist' in struct |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment