home *** CD-ROM | disk | FTP | other *** search
- // This program demonstrates how a Comal program can be
- // started by another program.
- //
- // The new program runs as a separate process that will
- // terminate itself.
- //
- // The program to be started must be saved on disk in
- // code form (use the Program menu).
-
- USE System
- USE StartProgram
-
- StartProgram(ComalPath$+"Programs/GraphDemo")
-
- PRINT "The program is running."
-