RosettaCodeData/Task/Compile-time-calculation/Factor/compile-time-calculation.factor
2023-07-01 13:44:08 -04:00

3 lines
82 B
Factor

: factorial ( n -- n! ) [1,b] product ;
CONSTANT: 10-factorial $[ 10 factorial ]