Skip to content

Instantly share code, notes, and snippets.

@Iainmon
Last active April 22, 2019 04:06
Show Gist options
  • Save Iainmon/249e37bf37540ff67594b1c3d9ebd7ba to your computer and use it in GitHub Desktop.
Save Iainmon/249e37bf37540ff67594b1c3d9ebd7ba to your computer and use it in GitHub Desktop.
abstract class Animal
abstract def speak
end
class Dog < Animal
def speak
"Bark!"
end
end
class Cat < Animal
def speak
"Meow!"
end
end
def printSpeak(animal : Animal)
puts animal.speak
end
dog = Dog.new
cat = Cat.new
printSpeak(cat)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment