command/RUN                                                       command/RUN
 
 NAME
     RUN -- Executes a program
 
 ABBREVIATION
     r <shift> U

 SYNOPSIS
     RUN [<line>]

 FUNCTION
     Once program has been typed into memory or LOADed, the RUN command makes
     it start working. RUN clears all variables in the program before 
     starting program execution. If there is no number following the command 
     RUN, the computer starts with the lowest numbered program line. If there
     is a number following the RUN command execution starts at that line.
 
 INPUTS
     <line> - line number where program execution should start
 
 RESULT
     BASIC program is executed.

 EXAMPLES
     RUN
         Starts program working from lowest line number.

     RUN 100
         Starts program at line 100.
 
 NOTES
     RUN may be used within a program.
 
 BUGS
     None
 
 SEE ALSO
     SYS