7 lines
698 B
Markdown
7 lines
698 B
Markdown
## Syntax of Includes
|
|
|
|
In AVAP™, the syntax for including a file is similar to that of other languages like C. The keyword `include` is used followed by the name of the file to be included. There are two main ways to include files in AVAP™:
|
|
|
|
* Local Include: Used to include project-specific files located in the same directory or in subdirectories relative to the current file. The file name is specified within quotes. Example: `include "file_name.avap"`
|
|
* System Include: Used to include standard or system library files located in predefined or configured paths on the system. The file or library name is specified between angle brackets (< and >). Example: `include <library_name.avap>`
|