11 lines
203 B
Kotlin
Vendored
11 lines
203 B
Kotlin
Vendored
data class D(val x: Int, val y: String)
|
|
|
|
fun foo(list: List<D>) {
|
|
for ((x, y) in list) {
|
|
}
|
|
val (x, y) = list.first()
|
|
list.forEach { (x, y) ->
|
|
println(x)
|
|
println(y)
|
|
}
|
|
} |