Skip to content

Instantly share code, notes, and snippets.

@yogacp
Last active August 12, 2019 16:26
Show Gist options
  • Save yogacp/30dd228376d2d8fb2b4ff96621d80cb7 to your computer and use it in GitHub Desktop.
Save yogacp/30dd228376d2d8fb2b4ff96621d80cb7 to your computer and use it in GitHub Desktop.
interface Toy {
var color: String?
fun fly()
}
class Plane : Toy {
override var color: String? = "Blue"
override fun fly() {
println("The plane is flying...")
}
}
class Car : Toy {
override var color: String? = "Red"
override fun fly() {
println("The car is flying...")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment