home *** CD-ROM | disk | FTP | other *** search
/ Ahoy 1987 February / Ahoy_Magazine_87-02_1987_Double_L_Side_B.d64 / listerine.txt < prev    next >
Text File  |  2022-10-26  |  973b  |  37 lines

  1. LISTERINE
  2. by Will Bow
  3.  
  4. This program takes a listed COMAL
  5. program from disk and creates
  6. separate files for each procedure and
  7. function. It works unchanged in
  8. either version of COMAL, and will
  9. work on any listed program.
  10.  
  11. Listerine allows you to break any
  12. program into its component procedures
  13. and functions so they can be used by
  14. other programs. This is a simple
  15. automated way to start a procedures
  16. library from programs that you
  17. already have.
  18.  
  19. To list a program to disk, LOAD the
  20. COMAL program into memory and type:
  21.  
  22. list "0:filename.l"
  23.  
  24. This will list the program to disk,
  25. using the file name within the
  26. quotes, just as if it were going to
  27. the screen. The ".l" at the end of
  28. the filename was added to help show
  29. that this is a LISTed file. These
  30. ability to LIST program to disk would
  31. be worthless, except that you can
  32. ENTER them back into memory, or other
  33. programs. (You could LIST useful
  34. PROCedures and FUNCtions to a disk
  35. and have them for the next program
  36. you work on).
  37.