5 lines
63 B
Swift
5 lines
63 B
Swift
var val = 0
|
|
repeat {
|
|
val++
|
|
print(val)
|
|
} while val % 6 != 0
|