5 lines
52 B
Text
5 lines
52 B
Text
|
|
var odd = 13;
|
||
|
|
if odd % 2 != 0 {
|
||
|
|
print("odd");
|
||
|
|
}
|