lama_byterun/regression/test097.lama

13 lines
143 B
Text
Raw Normal View History

2020-01-05 03:33:17 +03:00
fun f (a) {
fun g (b) {
fun h (c) {
fun (x) { x + a + b + c}
}
h (b)
}
g (a)
}
local x = read ();
write (f(10)(5))