Skip to content

Instantly share code, notes, and snippets.

@mehdi-farsi
Last active August 19, 2018 14:32
Show Gist options
  • Save mehdi-farsi/682321748b9feb5fbabf59ecf88f3fee to your computer and use it in GitHub Desktop.
Save mehdi-farsi/682321748b9feb5fbabf59ecf88f3fee to your computer and use it in GitHub Desktop.
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