RosettaCodeData/Task/Conditional-structures/SNUSP/conditional-structures-3.snusp

7 lines
80 B
Plaintext

var odd = 13;
if odd % 2 != 0 {
print("odd");
} else {
print("even");
}