mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
8 lines
149 B
Kotlin
Vendored
8 lines
149 B
Kotlin
Vendored
fun box(): String {
|
|
return justPrint(9.compareTo(4))
|
|
}
|
|
|
|
fun justPrint(value: Int): String {
|
|
return if (value > 0) "OK" else "Fail $value"
|
|
}
|