statement/GOTO                                                 statement/GOTO
 
 NAME
     GOTO -- Redirects program execution
 
 ABBREVIATION
     g <shift> O

 SYNOPSIS
     GOTO <line>
     GO TO <line>

 FUNCTION
     After a GOTO or GO TO statement is executed, the next line to be 
     executed will be the one with the line number following the word GOTO. 
     When used in direct mode, GOTO <line> allows you to start execution of 
     the program at the given line number without clearing the variables.
 
 INPUTS
     <line> - line number where program execution should continue
 
 RESULT
     Program execution continues at the given line.

 EXAMPLES
     10 PRINT"REPETITION IS THE MOTHER OF LEARNING"
     20 GOTO 10
         The GOTO in line 20 causes line 10 to be run continuously, until the
         <run/stop> key is pressed.
 
 NOTES
     None
 
 BUGS
     None
 
 SEE ALSO
     GOSUB