Page History: Make
Compare Page Revisions
Page Revision: 2019/04/10 03:05
Make allows you to combine several source files into one, large BAS program.
This serves two purposes:
- You can split up parts of your program into separate files to make them easier to maintain. (For example: screen I/O code in one file, business logic in another).
- You can create different versions of your program for different platforms. For example, you can include graphics statements in the Colour Maximite version, terminal commands in the DOS version, and ANSI escape sequences for devices without a screen.