Imports System
Public Module Module1
Public Sub Main()
Dim index As Integer = 0
While index < 50
Console.Write(index.ToString & " ")
If index = 13 Then
Exit While
End If
index += 1
End While
End Sub
End Module
' run:
'
' 0 1 2 3 4 5 6 7 8 9 10 11 12 13
'