home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / comal3-2.dms / in.adf / ComalMoreExtras / Demos / StartPrg < prev   
Encoding:
Text File  |  1992-12-27  |  370 b   |  16 lines

  1. // This program demonstrates how a Comal program can be
  2. // started by another program.
  3. //
  4. // The new program runs as a separate process that will
  5. // terminate itself.
  6. //
  7. // The program to be started must be saved on disk in
  8. // code form (use the Program menu).
  9.  
  10. USE System
  11. USE StartProgram
  12.  
  13. StartProgram(ComalPath$+"Programs/GraphDemo")
  14.  
  15. PRINT "The program is running."
  16.