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