Skip to content

Instantly share code, notes, and snippets.

@coolbrg
Created June 25, 2014 03:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coolbrg/c0fd8b3400842915bec7 to your computer and use it in GitHub Desktop.
Save coolbrg/c0fd8b3400842915bec7 to your computer and use it in GitHub Desktop.
Single Inheritance Demo
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