Skip to content

Instantly share code, notes, and snippets.

@Sottti
Last active September 22, 2018 08:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sottti/6f412094a08cbccab9b1ac9d35c4944f to your computer and use it in GitHub Desktop.
Save Sottti/6f412094a08cbccab9b1ac9d35c4944f to your computer and use it in GitHub Desktop.
val steveJobs= User("Steve Jobs", 56)
fun print() {
val (name, age) = steveJobs
println("$name, $age years of age") // prints "Steve Jobs, 56 years of age"
steveJobs.component1() // name
steveJobs.component2() // age
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment