Skip to content

Instantly share code, notes, and snippets.

@go-cristian
Created December 28, 2019 15:53
Show Gist options
  • Save go-cristian/0e8c276b697944acb5a45e9487ea5a38 to your computer and use it in GitHub Desktop.
Save go-cristian/0e8c276b697944acb5a45e9487ea5a38 to your computer and use it in GitHub Desktop.
sealed class Integrante
data class Persona(
val nombre: String, val apellido: String
) : Integrante()
data class Perro(val nombre: String) : Integrante()
typealias Familia = List<Integrante>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment