7 lines
102 B
Text
7 lines
102 B
Text
Sub bar2()
|
|
Dim x = 0
|
|
GoTo label
|
|
x = 5
|
|
label:
|
|
Console.WriteLine(x)
|
|
End Sub
|