Skip to content

Instantly share code, notes, and snippets.

@SmilinColleen
Created July 24, 2013 05:04
Show Gist options
  • Save SmilinColleen/6068186 to your computer and use it in GitHub Desktop.
Save SmilinColleen/6068186 to your computer and use it in GitHub Desktop.
Inheritance with Super example
class Mammal < Animal
def initialize
super
@sight = "normal"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment