5 lines
69 B
Text
5 lines
69 B
Text
|
|
local n = 123
|
||
|
|
if n % 2 == 0 do
|
||
|
|
print('even')
|
||
|
|
else print('odd') end
|