Files
kotlin-fork/compiler/testData/codegen/controlStructures/longRange.kt
T
2013-01-24 21:12:27 +04:00

8 lines
135 B
Kotlin

fun box(): String {
val r = 1.toLong()..2
var s = ""
for (l in r) {
s += l
}
return if (s == "12") "OK" else "fail: $s"
}