Skip to content

Instantly share code, notes, and snippets.

@mfifth
Created October 7, 2015 23:37
Show Gist options
  • Save mfifth/929b4623075d43959143 to your computer and use it in GitHub Desktop.
Save mfifth/929b4623075d43959143 to your computer and use it in GitHub Desktop.
class Animal
def initialize(name, age, color, type)
@name = name
@age = age
@color = color
@type = type
end
def describe
puts "This is #{@name}, he/she is #{@age}, is #{@color}, and is a #{@type}."
end
end
class Dog < Animal
end
Jeffrey = Dog.new("Jeffrey", 6, "Yellow", "Labrador")
Jeffrey.describe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment