Language Basics VisualBasic Script

Sub Demo_of_GoTo()
1
    If MsgBox("Go to line 1?", vbYesNo) = vbYes Then
        GoTo 1
    End If
End Sub