RUN
Format:
RUN
RUN expr
Supported by: COMX BASIC V1.00, Floating Point BASIC 2.2, Pecom 32 BASIC, Pecom 64 BASIC 1.0 and 4.0, Quest Super BASIC 1.4, 3.0, 5.0 and 6.0, RCA BASIC3 V1.1, Telmac SBASIC v 24.3
Similar commands: -
This statement sets BASIC into the program execution mode. BASIC searches for the lowest line number and begins executing each line in numerical order. Before execution begins, however, the RUN statement clears all array and string data space to make room for new data.
When expr is specified execution starts at the line number specified by expr. It is similar to RUN with no trailing expression in that it sets BASIC into the execution mode. If the line number specified by expr does not exist, an error code is generated. In addition, because this RUN statement does not clear the data space, the user can execute a program with data (strings or arrays) generated previously.