7 lines
134 B
Kotlin
7 lines
134 B
Kotlin
fun box(): String {
|
|
val result = runTest{minByTest<Int> { it }}
|
|
|
|
if (result != 1) return "test1: ${result}"
|
|
|
|
return "OK"
|
|
} |