RosettaCodeData/Task/Conditional-structures/Blz/conditional-structures.blz

6 lines
58 B
Plaintext

if i % 2 == 0
print("even")
else
print("odd")
end