Skip to content

Instantly share code, notes, and snippets.

@valikos
Created December 10, 2015 15:01
Show Gist options
  • Save valikos/90a453f887abc9a6f355 to your computer and use it in GitHub Desktop.
Save valikos/90a453f887abc9a6f355 to your computer and use it in GitHub Desktop.
class Dog
attr_reader :name
def vote
'Woof!'
end
def mood
'happy'
end
def pee
'pee'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment