5 lines
89 B
Text
5 lines
89 B
Text
|
|
for i = 1 to 10
|
||
|
|
if (i mod 2) then print i;" is odd" else print i;" is even"
|
||
|
|
next i
|
||
|
|
end
|