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