Files

6 lines
89 B
Kotlin
Vendored

fun foo(): Int {
val x = fun() = 4
val y = fun() = 2
return 10 * x() + y()
}