5 lines
76 B
Kotlin
Vendored
5 lines
76 B
Kotlin
Vendored
//WITH_RUNTIME
|
|
fun box(): String {
|
|
val x by lazy { "OK" }
|
|
return x
|
|
} |