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

12 lines
116 B
Plaintext

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