7 lines
101 B
Kotlin
Vendored
7 lines
101 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun box(): String {
|
|
val ok = Result.success("OK")
|
|
return ok.getOrNull()!!
|
|
}
|