8 lines
123 B
Text
8 lines
123 B
Text
|
|
For i = 1 To 10
|
||
|
|
TextWindow.Write(i)
|
||
|
|
If i <> 10 Then
|
||
|
|
TextWindow.Write(", ")
|
||
|
|
EndIf
|
||
|
|
EndFor
|
||
|
|
TextWindow.WriteLine("")
|