Skip to content

Instantly share code, notes, and snippets.

@jjuliano
Last active December 16, 2019 11:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jjuliano/99372a637d59fb46fa98221fd8365e87 to your computer and use it in GitHub Desktop.
Save jjuliano/99372a637d59fb46fa98221fd8365e87 to your computer and use it in GitHub Desktop.
class Dog
def initialize(breed)
@breed = breed
end
def kind
@breed
end
end
dog = Dog.new("Rottweiler")
dog.kind
# Rottweiler
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment