1 line
49 B
Text
1 line
49 B
Text
fact(n) := if n < 2 then 1 else n * fact(n - 1)$
|
fact(n) := if n < 2 then 1 else n * fact(n - 1)$
|