RosettaCodeData/Task/Factorial/TransFORTH/factorial.fth

5 lines
39 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
: FACTORIAL
1 SWAP
1 + 1 DO
I * LOOP ;