mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
9 lines
89 B
Text
9 lines
89 B
Text
func f(n) {
|
|
if (n > 1) {
|
|
return n*f(n-1)
|
|
} else {
|
|
return 1
|
|
}
|
|
}
|
|
|
|
$y = f($i)
|