Created
June 25, 2014 03:06
-
-
Save brgnepal/c0fd8b3400842915bec7 to your computer and use it in GitHub Desktop.
Single Inheritance Demo
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment