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