6 lines
80 B
Text
6 lines
80 B
Text
var odd = 13;
|
|
if odd % 2 != 0 {
|
|
print("odd");
|
|
} else {
|
|
print("even");
|
|
}
|