miller/go/reg-test/input/ff.mlr

9 lines
89 B
Text

func f(x) {
if (x > 1) {
return x*f(x-1)
} else {
return 1
}
}
$y = f($i)