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

11 lines
No EOL
138 B
Text

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