Created
December 28, 2019 15:53
-
-
Save go-cristian/0e8c276b697944acb5a45e9487ea5a38 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
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