Skip to content

Instantly share code, notes, and snippets.

@kkchu791
Last active November 16, 2015 08:28
Show Gist options
  • Save kkchu791/7d6fe0f8e3bc5c726e9f to your computer and use it in GitHub Desktop.
Save kkchu791/7d6fe0f8e3bc5c726e9f to your computer and use it in GitHub Desktop.
class Shape
def click
p rotate
play
end
def play
sound
end
def rotate
"Rotating #{self} 360 degrees"
end
end
class Square < Shape
def sound
"bing"
end
end
class Triangle < Shape
def sound
"bang"
end
end
class Circle < Shape
def sound
"boom"
end
end
p s = Square.new.click
p t = Triangle.new.click
p c = Circle.new.click
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment