RosettaCodeData/Task/Loops-Continue/Euphoria/loops-continue-1.eu
2026-04-30 12:34:36 -04:00

11 lines
265 B
Text

include std\console.e --only for any_key to make running command window easier on windows
for i = 1 to 10 do
if remainder(i,5) = 0 then
printf(1, "%d\n", i)
else
printf(1,"%d, ", i)
continue
end if
end for
any_key()