RosettaCodeData/Task/Loops-Do-while/PureBasic/loops-do-while.basic
2023-07-01 13:44:08 -04:00

5 lines
39 B
Text

x=0
Repeat
x+1
Debug x
Until x%6=0