mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
8 lines
100 B
Kotlin
8 lines
100 B
Kotlin
fun box(): String {
|
|
if (!true) {
|
|
return "fail"
|
|
} else {
|
|
return "OK"
|
|
}
|
|
}
|