9 lines
74 B
Kotlin
Vendored
9 lines
74 B
Kotlin
Vendored
fun foo(a: Array<Int>) {
|
|
3
|
|
a[10] = 4
|
|
2
|
|
a[10]
|
|
100
|
|
a[10] += 1
|
|
}
|