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

7 lines
123 B
Text

For i = 1 To 10
TextWindow.Write(i)
If i <> 10 Then
TextWindow.Write(", ")
EndIf
EndFor
TextWindow.WriteLine("")