Skip to content

Instantly share code, notes, and snippets.

@go-cristian
Last active December 28, 2019 15:52
Show Gist options
  • Select an option

  • Save go-cristian/3a5b55ecff6647693b3ec6fbb854c74e to your computer and use it in GitHub Desktop.

Select an option

Save go-cristian/3a5b55ecff6647693b3ec6fbb854c74e to your computer and use it in GitHub Desktop.
Code for medium post, Intro to FP
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