lama_byterun/regression/test097.lama

13 lines
141 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)
}
var x = read ();
2020-01-05 03:33:17 +03:00
write (f(10)(5))