RosettaCodeData/Task/Repeat/Forth/repeat-1.fth
2023-07-01 13:44:08 -04:00

2 lines
52 B
Forth

: times ( xt n -- )
0 ?do dup execute loop drop ;