Files
kotlin-fork/j2k/tests/testData/ast/for/forRangeWithLE.kt
T

4 lines
62 B
Kotlin

val array = IntArray(10)
for (i in 0..10) {
array[i] = i
}