RosettaCodeData/Task/Factorial/TransFORTH/factorial.fth
2023-07-01 13:44:08 -04:00

4 lines
39 B
Forth

: FACTORIAL
1 SWAP
1 + 1 DO
I * LOOP ;