Skip to content

Instantly share code, notes, and snippets.

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