Last active
August 19, 2018 14:32
-
-
Save mehdi-farsi/0ab0ab813ebe53544e80d5296a4ae6fa 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
Address = Struct.new(:street, :city, :zip) | |
class Address | |
def full_address | |
"#{street} #{city} #{zip}" | |
end | |
end | |
home = Address.new('Broadway', 'NYC', 10040) | |
home.full_address # => "Broadway NYC 10040" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment