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