lama_byterun/regression/test066.expr
Dmitry Boulytchev 2bfebc93f8 FSF in SM
2019-10-13 05:29:06 +03:00

11 lines
No EOL
147 B
Text

fun f (a) {
fun g (b) {
fun h (c) {
return fun (x) {return x + a + b + c}
}
return h (b)
}
return g (a)
}
write (f(10)(5))