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

7 lines
66 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for i = 1 to 10
print i;
if i < 10 then print ", ";
next i
end