mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 15:54:05 +00:00
8 lines
137 B
Kotlin
Vendored
8 lines
137 B
Kotlin
Vendored
// KJS_WITH_FULL_RUNTIME
|
|
fun box(): String {
|
|
val list = ArrayList<IntRange>()
|
|
list.add(1..3)
|
|
list[0].start
|
|
return "OK"
|
|
}
|