RosettaCodeData/Task/Flow-control-structures/Visual-Basic-.NET/flow-control-structures-1.vb

8 lines
102 B
VB.net
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Sub bar2()
Dim x = 0
GoTo label
x = 5
label:
Console.WriteLine(x)
End Sub