lama_byterun/regression/test066.lama

13 lines
167 B
Text
Raw Normal View History

2019-10-13 05:29:06 +03:00
fun f (a) {
fun g (b) {
fun h (c) {
return fun (x) {return x + a + b + c}
}
return h (b)
}
return g (a)
}
2019-10-16 21:07:27 +03:00
local x = read ();
2019-10-13 05:29:06 +03:00
write (f(10)(5))