Include

Includes and compiles another BambooBasic source file into the current file

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Includes and compiles another BambooBasic source file into the current file

Technical Exegesis...

Includes and compiles another BambooBasic source file into the current file. Syntax is Include "filename.bam". The included file's code is compiled as if it were part of the current file. Use for sharing function definitions, type declarations, or constants across multiple files. Included files can access the including file's globals.

Example

Example.bam
; No example implemented yet