Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Last active December 29, 2020 10:59
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 PatilShreyas/251c8fe85a61e23875e0d408d8206c75 to your computer and use it in GitHub Desktop.
Save PatilShreyas/251c8fe85a61e23875e0d408d8206c75 to your computer and use it in GitHub Desktop.
data class User(val id: Int, val name: String)
fun main() {
- val user = getUser()
- val userId = user.id
- val userName = user.name
+ val (userId, userName) = getUser()
}
fun getUser() = User(1, "John Doe")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment