Files
kotlin/compiler/testData/codegen/controlStructures/longRange.jet
2012-08-31 12:52:46 +04:00

8 lines
135 B
Plaintext

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