RosettaCodeData/Task/Loops-Continue/Forth/loops-continue.fth
2023-07-01 13:44:08 -04:00

5 lines
90 B
Forth

: main
11 1 do
i dup 1 r.
5 mod 0= if cr else [char] , emit space then
loop ;