Skip to content

Instantly share code, notes, and snippets.

@s1monw1
Last active May 29, 2023 08:10
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 s1monw1/7d2e76b51d15be3fb3177dd8d6cd166b to your computer and use it in GitHub Desktop.
Save s1monw1/7d2e76b51d15be3fb3177dd8d6cd166b to your computer and use it in GitHub Desktop.
open class Mammal(val name: String)
class Cat(val catName: String) : Mammal(catName)
class Human(val humanName: String, val job: String) : Mammal(humanName)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment