Basic30 Language Reference
#include Preprocessor Command

Includes a source file.

#include "pathName"
 or
#include <relativePath>
pathName
Path to the file to include relative to the current source code file, or a complete path..
relativePath
Path to the file to include relative to the compiler application directory.

Examples

#include "defintions.b30"
#include "C:\MyPrograms\test.b30"
#include <libs\30F2010.b30>