1 03/11/76   run
 2 
 3 Function:  The run command causes the current file to be executed.  The
 4 file must begin with a main program.  It may be in source or object
 5 form.  If the current file is an object program, it will be directly
 6 executed.  If the system_name argument is supplied, the current system
 7 is changed accordingly.  The contents of the current file are
 8 unaffected.
 9 
10 
11 If the current file (or any external subprogram file that it calls) is
12 in source form, it is compiled to produce a temporary object program,
13 which is then executed.  An external file must have been specified in a
14 BASIC or FORTRAN library statement within the user's program.
15 
16 
17 Syntax:  run {system_name}
18 
19 
20 where system_name can be basic, dbasic, or fortran.
21 
22 
23 Example:
24 
25 !    old test.basic
26      ready  907
27 
28 
29 !    run
30      Your program types this
31      when it runs.
32      ready  907