Swift продолжить с while Loop
// program to print odd numbers from 1 to 10
var num = 0
while num <= 10{
num += 1
if (num % 2) == 0 {
continue
}
print("\(num)")
}
SAMER SAEID