lama_byterun/regression/test066.lama
Dmitry Boulytchev 61296c51e7 Massive renaming
2020-02-16 00:21:15 +03:00

13 lines
No EOL
167 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)
}
local x = read ();
write (f(10)(5))