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

9 lines
121 B
Text

Local str
"" → str
For i,1,10
str & string(i) → str
If i < 10 Then
str & "," → str
EndIf
EndFor
Disp str