Created
March 4, 2017 04:00
-
-
Save egrueter-dev/24087aac4d5cf4aca17f129c3b28c3b3 to your computer and use it in GitHub Desktop.
basic-ruby-inheritance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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