miller/test/input/ff.mlr
2021-11-11 14:15:13 -05:00

9 lines
89 B
Text

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