7 lines
93 B
Kotlin
7 lines
93 B
Kotlin
fun test() {
|
|
val (a, b) =
|
|
Pair(true, false)
|
|
|
|
val (c, d)
|
|
= Pair(true, false)
|
|
} |