home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l076 / 1.ddi / COMPILE.TRU < prev    next >
Encoding:
Text File  |  1984-12-19  |  1.1 KB  |  25 lines

  1. True BASIC        COMPILE 
  2.  
  3.       Type         │   Press      │
  4. ───────────────────┼──────────────┼──────────────────────────────────────────
  5.                    │              │
  6.   COMPILE          │              │ to create a compiled version of
  7.                    │              │ your program
  8.                    │              │
  9. ───────────────────┴──────────────┴──────────────────────────────────────────
  10.  
  11. A compiled program will run faster than the original source program,
  12. because True BASIC does not have to recompile the program in order to
  13. run it.
  14.  
  15. After the program is compiled, you will no longer see the source code
  16. displayed in the editing window, and you will not be able to edit it.
  17. Type RUN to run the compiled version, or SAVE <filename> to keep a copy
  18. of the compiled program on the disk. If you don't specify a file extension
  19. with the SAVE command, True BASIC will save the compiled program with the
  20. extension .TRC.  You should be sure that you have saved a copy of your 
  21. source program.
  22.  
  23. See also:  HELP RUN     running your current program
  24.            HELP SAVE    saving your current file on disk
  25.