RUN


General Form:



The RUN command is used to initiate execution of the program currently in memory. Note that programs can also be executed by pressing the F11 key within the Workbench.

Before program execution begins the program is resolved. The resolution process performs the following functions:

Once the resolution process is complete and no errors have occurred, the RUN command then begins executing the program code.

RUN can also be used without any line numbers as a statement in a program to force the program to be restarted as if halt had been pressed and RUN entered in immediate mode.

RUN STOP will resolve a program and stop just before execution. The program can be started with CONTINUE. This can be useful in checking for resolve time errors such as mismatched IF ... END IF statements.

Syntax examples:

RUN
RUN 1200
RUN 9000,7
RUN STOP
1900 RUN

See also:

LOAD RUN