5 lines
63 B
Text
5 lines
63 B
Text
|
|
local value = 0
|
||
|
|
repeat
|
||
|
|
print(++value)
|
||
|
|
until value % 6 == 0
|