RosettaCodeData/Task/Loops-Do-while/TAV/loops-do-while-2.tav

7 lines
131 B
Text
Raw Permalink Normal View History

2025-08-11 18:05:26 -07:00
x = 0
while \ loop forever
x += 1 \ increment x
print x
if x %% 6 == 0 \ until
break