RUN
Purpose
Executes a program.
RUN   [ execution start line ] 
        --------------------
            Line number
Example
RUN
RUN 100
Parameters
start line number: Integer in the range of 1 <= line number <= 65335
Explanation
  - Execution starts from the beginning of the program when the line number is omitted.
 
  - When the specified line number does not exist, the first line number above that 
specified is taken as the start line number.
 
  - This command closes all files that are open.
 
  - Variable and array values are not cleared.
 
  - This command cannot be used within a program.
 
  - This command cannot be used in the CAL mode.
 
Sample Program
RUN 100
Executes program from line number 100.