RosettaCodeData/Task/Loops-Do-while/Swift/loops-do-while-2.swift

6 lines
63 B
Swift

var val = 0
repeat {
val++
print(val)
} while val % 6 != 0