lama_byterun/regression/test100.lama

11 lines
No EOL
124 B
Text

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