RosettaCodeData/Task/Loops-Continue/LDPL/loops-continue.ldpl

15 lines
207 B
Text
Raw Permalink Normal View History

2023-09-01 09:35:06 -07:00
data:
i is number
n is number
procedure:
for i from 1 to 11 step 1 do
display i
modulo i by 5 in n
if n is equal to 0 then
display lf
continue
end if
display ", "
repeat