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