Last active
September 22, 2018 08:01
-
-
Save Sottti/6f412094a08cbccab9b1ac9d35c4944f 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
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