Run FileSpec executes the program residing in the specified file. All files are closed prior to execution of the program. FileSpec may be any string expression.
data 21, lunar, robots print "Welcome to the Arcade" for i = 1 to 3 read a$(i) print using "#) &"; i, a$(i) next i input "Which would you like to play"; i run a$(i) print "Games are for children, you pinhead!"presents the user with a menu of games and then runs the user’s choice using the run statement. Note that control is completely relinquished by this program so that the final statement will never be executed.
from The Basmark QuickBASIC Programmer’s Manual by Lawrence Leinweber