RosettaCodeData/Task/Loops-Continue/Euphoria/loops-continue-1.euphoria
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07: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()