4 lines
83 B
Text
4 lines
83 B
Text
|
|
for i = 1 to 10
|
||
|
|
if i and 1 then print i;" is odd" else print i;" is even"
|
||
|
|
next i
|