Skip to content

Instantly share code, notes, and snippets.

@vamsitallapudi
Created December 5, 2020 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vamsitallapudi/45dcc324cb47cc85d0e1743c52e74ada to your computer and use it in GitHub Desktop.
Save vamsitallapudi/45dcc324cb47cc85d0e1743c52e74ada to your computer and use it in GitHub Desktop.
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