9 lines
173 B
Plaintext
Vendored
9 lines
173 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
data class XY(val x: String, val y: String)
|
|
fun test(xys: Array<XY>) {
|
|
for ((xyx, y) in xys) {
|
|
println(xyx + y)
|
|
println(xyx + y)
|
|
}
|
|
} |