lama_byterun/lama-compiler/regression/test059.lama

13 lines
No EOL
137 B
Text

fun f (a) {
fun g (b) {
fun h (c) {
fun (x) {x + a + b + c}
}
h (b)
}
g (a)
}
val x = read ();
write (f(10)(5))