mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
7 lines
101 B
Kotlin
7 lines
101 B
Kotlin
fun box(): String {
|
|
val x = 1
|
|
when (x) {
|
|
1 -> return "OK"
|
|
}
|
|
return "Fail 1"
|
|
} |