home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM 1995 Fall / PD-ROM F95.toast / Programming / Programming Languages / PC Basic ƒ / PCBASIC Stand alone version / PCBASIC Demo / PCBASICDemo / PCBASICDemo.rsrc / STR#_506.txt < prev    next >
Encoding:
Text File  |  1992-02-22  |  827 b   |  35 lines

  1.     PCBASIC compiles large programs and systems containing
  2.  
  3. many programs. You can divide large programs into segments
  4.  
  5. with one simple command. These segments will be read in from
  6.  
  7. the disk when they are needed. They will be discarded when
  8.  
  9. memory space is short. This happens automatically, without
  10.  
  11. any effort by the BASIC programmer.
  12.  
  13.  
  14.  
  15.     Many small programs can be compiled together as a package.
  16.  
  17. These programs can all be in memory at the same time. When one
  18.  
  19. program calls another program in the package, the code will not
  20.  
  21. have to be read from the disk.
  22.  
  23.  
  24.  
  25.     Programs with large data spaces are handled easily too.
  26.  
  27. Arrays are dynamic. They can be erased and created again, with a
  28.  
  29. different size, while the program is running. Large arrays are
  30.  
  31. relocatable blocks. The move around in memory to reuse space.
  32.  
  33. END
  34.  
  35.