RosettaCodeData/Task/Loops-N-plus-one-half/PureBasic/loops-n-plus-one-half.basic
2023-07-01 13:44:08 -04:00

7 lines
79 B
Text

x=1
Repeat
Print(Str(x))
x+1
If x>10: Break: EndIf
Print(", ")
ForEver