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

11 lines
116 B
Text

window 1
long i, num = 10
for i = 1 to num
print i;
if i = num then break
print @", ";
next i
HandleEvents