RosettaCodeData/Task/Loops-N-plus-one-half/PureBasic/loops-n-plus-one-half.basic

8 lines
79 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
x=1
Repeat
Print(Str(x))
x+1
If x>10: Break: EndIf
Print(", ")
ForEver