lama_byterun/regression/test100.lama

11 lines
124 B
Text
Raw Normal View History

2020-01-05 03:33:17 +03:00
fun f (x) {
fun inner (y) {
if y == 0 then 0 else inner (y-1) fi
}
inner (x)
}
var n = read ();
2020-01-05 03:33:17 +03:00
write (f (5))