8 lines
104 B
Kotlin
Vendored
8 lines
104 B
Kotlin
Vendored
fun box(): String {
|
|
val x = 3
|
|
when (x) {
|
|
1 -> {}
|
|
2 -> {}
|
|
}
|
|
return "OK"
|
|
} |