Skip to content

Instantly share code, notes, and snippets.

@egrueter-dev
Created March 4, 2017 04:00
Show Gist options
  • Save egrueter-dev/24087aac4d5cf4aca17f129c3b28c3b3 to your computer and use it in GitHub Desktop.
Save egrueter-dev/24087aac4d5cf4aca17f129c3b28c3b3 to your computer and use it in GitHub Desktop.
basic-ruby-inheritance
class Mammal
def breathe
puts "inhale and exhale"
end
end
class Cat < Mammal
def speak
puts "Meow"
end
end
kitty = Cat.new
kitty.breathe # inhale and exhale
kitty.speak # Meow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment