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

6 lines
82 B
Text

for i =1 to 10
print i;
if i =10 then exit for
print ", ";
next i
end