mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
10 lines
195 B
Kotlin
Vendored
10 lines
195 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun box(): String {
|
|
for (element in 5.toByte()..1.toByte() step 255) {
|
|
return "Fail: iterating over an empty progression, element: $element"
|
|
}
|
|
|
|
return "OK"
|
|
}
|