A line number is simply a number placed at the beginning of a line to identify it. For example, consider this demonstration of GoTo:
Sub Demo_of_GoTo()
1
If MsgBox("Go to line 1?", vbYesNo) = vbYes Then
GoTo 1
End If
End Sub
Related examples in the same category