Created
December 5, 2020 09:16
-
-
Save vamsitallapudi/45dcc324cb47cc85d0e1743c52e74ada 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
open class Bird{ | |
fun makeSound(){} | |
} | |
open class FlyingBird : Bird() { | |
fun fly() {} | |
} | |
class Eagle : FlyingBird() | |
class Penguin : Bird() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment