Files

7 lines
106 B
Kotlin
Vendored

fun <T> eval(fn: () -> T) = fn()
private const val z = "OK";
fun box(): String {
return eval { z }
}