#INCLUDE
You can use this command to include the function declarations of other Dark Basic programs. You can use this command to simplify your main program by writing sub-programs that hold re-usable independent functions. The #include will associate all the functions within the sub-program with the main program during compilation. The Filename String must specify a Dark Basic program in the current project directory. You can #include upto 255 sub-programs in total. Sub-programs can also use the #include command to further nest sub-programs, but all sub-programs compile into the main program so duplicated function names are not allowed.
SYNTAX
#INCLUDE Filename String
RELATED INFO
Basic Commands
Glossary
EXAMPLE
#INCLUDE Commands