5 lines
94 B
Text
5 lines
94 B
Text
For i = 1 To 10
|
|
Console.Write(i)
|
|
If i = 10 Then Exit For
|
|
Console.Write(", ")
|
|
Next
|