5 lines
86 B
Kotlin
Vendored
5 lines
86 B
Kotlin
Vendored
// <<< arrayAssignment.txt
|
|
fun test() {
|
|
val x = intArrayOf(1, 2, 3)
|
|
x[1] = 0
|
|
} |