mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-31 11:41:33 +00:00
9 lines
89 B
Text
9 lines
89 B
Text
func f(x) {
|
|
if (x > 1) {
|
|
return x*f(x-1)
|
|
} else {
|
|
return 1
|
|
}
|
|
}
|
|
|
|
$y = f($i)
|