4 lines
62 B
Kotlin
Vendored
4 lines
62 B
Kotlin
Vendored
val array = IntArray(10)
|
|
for (i in 0..10) {
|
|
array[i] = i
|
|
} |