Last active
August 19, 2018 14:31
-
-
Save mehdi-farsi/4c025805ca9849d19ec878dd1ffb3470 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 # => #<struct Address street="Broadway", city="NYC", zip=10040> | |
home.street = 'Opéra' | |
home[:city] = 'Paris' | |
home['zip'] = 75009 | |
home # => #<struct Address street="Opéra", city="Paris", zip=75009> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment