Last active
August 12, 2019 16:26
-
-
Save yogacp/30dd228376d2d8fb2b4ff96621d80cb7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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