NAME
RUN Statement
SYNOPSIS
RUN [{linenumber | file$}]
o linenumber The line number in the current program where execution
should begin. If no line number is specified, execution
begins at the first executable line.
o file$ The name of a Basic source file. QBasic assumes
a .BAS extension.
o RUN closes all files and clears program memory before loading a
program. Use the CHAIN statement to run a program without closing
open files.
DESCRIPTION
Runs the current program or a specified program.
Example:
'Assumes the program TEST.BAS is in a \DOS directory.
RUN "C:\DOS\TEST.BAS"
SEE ALSO
CHAIN