Files
2018-07-17 20:18:29 +03:00

8 lines
112 B
Kotlin
Vendored

fun box(): String {
val x = 2
return when(x) {
in (1..3) -> "OK"
else -> "fail"
}
}