Last active
December 28, 2019 15:52
-
-
Save go-cristian/3a5b55ecff6647693b3ec6fbb854c74e to your computer and use it in GitHub Desktop.
Code for medium post, Intro to FP
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
| val cristian = Persona(nombre="Cristian", apellido="Gomez") | |
| val carlos = Persona(nombre="Carlos", apellido="Gomez") | |
| val carmen = Persona(nombre="Carmen", apellido="Gomez") | |
| val spock = Perro(nombre="Spock") | |
| val familia:Familia = listOf(cristian, carlos, carmen, spock) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment