3 lines
99 B
Text
3 lines
99 B
Text
for i in range(-4, 4)
|
|
if i % 2 == 0 then print i + " is even" else print i + " is odd"
|
|
end for
|