11 lines
160 B
Kotlin
Vendored
11 lines
160 B
Kotlin
Vendored
fun box(): String {
|
|
var s = "2"
|
|
var res = "Fail"
|
|
if (s == "1") {
|
|
false
|
|
} else if (s == "2") {
|
|
res = "OK"
|
|
}
|
|
return res
|
|
}
|