11 lines
265 B
Text
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()
|