RUN - source-solutions/HELP GitHub Wiki
RUN [line_number | app_name [, p0, p1, ...]]
Executes a program. Existing variables will be cleared and any program in memory
will be erased. RUN
implies a CLEAR
. If an app_name
is specified, opens the
application.
-
line_number
is a valid line number in the current program. If specified, execution starts from this line number. The rest of theRUN
statement is ignored in this case. - The string expression
app_name
, if specified, is a valid application name (case-insensitive, truncated to the first 11 characters). -
p0, p1, ...
are variables.
-
line_number
is not a line number in the current program: Undefined line number -
app_name
cannot be found: File not found.