7 lines
141 B
Kotlin
Vendored
7 lines
141 B
Kotlin
Vendored
import test.*
|
|
|
|
fun box(): String {
|
|
val result = processRecords { "B" + it }
|
|
|
|
return if (result == "BOK1") "OK" else "fail: $result"
|
|
} |