Skip to content

Instantly share code, notes, and snippets.

Created November 9, 2017 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/a0f970110292dd925d55729a8a30cb18 to your computer and use it in GitHub Desktop.
Save anonymous/a0f970110292dd925d55729a8a30cb18 to your computer and use it in GitHub Desktop.
Desctructering in Kotlin
data class Person(val name: String, val age: Int)
val(name, age) = Person("Guy", 20)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment