2 lines
49 B
Text
2 lines
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)$
|