12 lines
181 B
Kotlin
12 lines
181 B
Kotlin
import test.*
|
|
|
|
fun test1(): String {
|
|
return doSmth("O", "K")
|
|
}
|
|
|
|
fun box(): String {
|
|
val result = test1()
|
|
if (result != "OK") return "fail1: ${result}"
|
|
|
|
return "OK"
|
|
} |