mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
14 lines
159 B
Kotlin
Vendored
14 lines
159 B
Kotlin
Vendored
var result = "Fail"
|
|
|
|
fun setOK(): Boolean {
|
|
result = "OK"
|
|
return true
|
|
}
|
|
|
|
fun box(): String {
|
|
if (setOK()) {
|
|
} else {
|
|
}
|
|
return result
|
|
}
|