Skip to content

Instantly share code, notes, and snippets.

@devrath
Created August 9, 2022 10:50
Show Gist options
  • Select an option

  • Save devrath/cad9757d36fd3aba4000aae3f7c0bf71 to your computer and use it in GitHub Desktop.

Select an option

Save devrath/cad9757d36fd3aba4000aae3f7c0bf71 to your computer and use it in GitHub Desktop.
Defining the sealed class
sealed class Animal {
object Cat : Animal() // We can define a Object classes like this
data class Dog(val name: String) : Animal() // We can define data classes like this
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment