10 lines
203 B
Kotlin
Vendored
10 lines
203 B
Kotlin
Vendored
import test.*
|
|
|
|
fun box() : String {
|
|
val p = P()
|
|
|
|
if (p.testPrivate() != "OK") return "fail 1 ${p.testPrivate()}"
|
|
|
|
if (p.testFinal() != "OK") return "fail 2 ${p.testFinal()}"
|
|
return "OK"
|
|
} |