History  | 
Goto (BASIC command) 
Purpose 
Jumps to a label. 
Processing jumps to the line that starts with the label. 
Syntax 
Goto Label 
 Example 
Sub Main() 
        Dim num As Integer 
        num = 5 
        Goto 20 
                Print "This will not get printed" 
        20 If num = 5 then 
        Goto numis5 
... 
 | ||||