mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
10 lines
203 B
Kotlin
10 lines
203 B
Kotlin
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"
|
|
} |