RosettaCodeData/Task/Loops-Continue/XPL0/loops-continue.xpl0

5 lines
142 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
code CrLf=9, IntOut=11, Text=12;
integer N;
for N:= 1 to 10 do
[IntOut(0, N); if remainder(N/5) \#0\ then Text(0, ", ") else CrLf(0)]