home *** CD-ROM | disk | FTP | other *** search
- PCBASIC compiles large programs and systems containing
-
- many programs. You can divide large programs into segments
-
- with one simple command. These segments will be read in from
-
- the disk when they are needed. They will be discarded when
-
- memory space is short. This happens automatically, without
-
- any effort by the BASIC programmer.
-
-
-
- Many small programs can be compiled together as a package.
-
- These programs can all be in memory at the same time. When one
-
- program calls another program in the package, the code will not
-
- have to be read from the disk.
-
-
-
- Programs with large data spaces are handled easily too.
-
- Arrays are dynamic. They can be erased and created again, with a
-
- different size, while the program is running. Large arrays are
-
- relocatable blocks. The move around in memory to reuse space.
-
- END
-
-