mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
9 lines
114 B
Kotlin
9 lines
114 B
Kotlin
import test.*
|
|
|
|
val s = doWork({11})
|
|
|
|
fun box(): String {
|
|
if (s != 11) return "test1: ${s}"
|
|
|
|
return "OK"
|
|
} |