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

6 lines
66 B
Swift

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