mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
13 lines
184 B
Kotlin
Vendored
13 lines
184 B
Kotlin
Vendored
fun box(): String {
|
|
var result = ""
|
|
run {
|
|
object {
|
|
init {
|
|
result = "OK"
|
|
}
|
|
}
|
|
}
|
|
return result
|
|
}
|
|
|
|
// 1 LINENUMBER 6 |