mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
9 lines
194 B
Kotlin
Vendored
9 lines
194 B
Kotlin
Vendored
package b
|
|
|
|
fun main(args : Array<String>) {
|
|
var ints : Array<Int?> = arrayOfNulls<Int>(31)
|
|
|
|
ints[0] = 4; ints[11] = 5; ints[2] =7
|
|
for(i in 0..ints.size)
|
|
ints[i<!SYNTAX!><!>
|
|
} |