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

15 lines
No EOL
200 B
Text

fun f (x) {
fun inner1 (y) {
if y == 0 then 0 else inner2 (y-1) fi
}
fun inner2 (y) {
if y == 0 then 0 else inner1 (y-1) fi
}
inner1 (x)
}
local n = read ();
write (f (5))