#INCLUDE
To include a file in a program, use the #INCLUDE Compiler Directive,
followed by the filename in single quotes.
Example:
- When the compiler reaches the
#INCLUDEstatement, it jumps into the specified file and continues compiling. - When it has reached the end of that file, it comes back to the line following the
#INCLUDEstatement and continues compiling.