4 lines
83 B
Kotlin
4 lines
83 B
Kotlin
fun box(): String {
|
|
val f: (() -> Unit)? = null
|
|
return JavaClass.run(f)!!
|
|
} |