6 lines
131 B
Text
6 lines
131 B
Text
x = 0
|
|
while \ loop forever
|
|
x += 1 \ increment x
|
|
print x
|
|
if x %% 6 == 0 \ until
|
|
break
|