-
Notifications
You must be signed in to change notification settings - Fork 0
Source Control
Kristian Virtanen edited this page Jan 18, 2026
·
2 revisions
BazzBasic takes a single filename as a parameter and extracts the code contained there into tokens before executing the program.
- Code inherited from another file via INCLUDE is read at the exact point in the file where the INCLUDE is.
- Basically you could say, that the line where INCLUDE was called is replaced by the data from other file.
INCLUDE "test2.bas"
PRINT a$LET a$ = "Foo"BazzBasic reads these directly as a continuation of each other
LET a$ = "Foo"
PRINT a$