6 lines
78 B
Text
6 lines
78 B
Text
|
|
# Built-in
|
||
|
|
Factorial(5);
|
||
|
|
|
||
|
|
# An implementation
|
||
|
|
fact := n -> Product([1 .. n]);
|