This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
compilation/flap/tests/04-Hobix_to_Fopix/10-nesting.hobix
2023-12-11 11:49:02 +01:00

9 lines
169 B
Text

val f = \(x) =>
val g = \(y) =>
(val h = \(z) =>
(val i = \(t) => x + y + z + t;
i (z + 1));
h (y + 1));
g (x + 1)
val main = print_int (f (3))