Skip to content

Instantly share code, notes, and snippets.

@Martin-Nyaga
Created November 24, 2016 15:43
Show Gist options
  • Save Martin-Nyaga/4ca0c42e1e9c23003dfc7cbbd0675616 to your computer and use it in GitHub Desktop.
Save Martin-Nyaga/4ca0c42e1e9c23003dfc7cbbd0675616 to your computer and use it in GitHub Desktop.
class Animal
def initialize(name)
@name = name
end
def make_sound
puts "No sound"
end
end
class Dog < Animal
def make_sound
puts "Woof!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment