INCLUDE
INCLUDE SourceFile
Inserts code from SourceFile when the program is compiled.
INCLUDE can be used to split a large file into smaller parts. If you want to use include to create a library, then you should consider to use an UNIT instead.
Example
Create first file and save it as part1.bas.
Print "This is part1.bas"
for i = 1 to 5
print i
next
Create second file wich will include part1.bas.
include part1.bas
print "This is part2.bas"
for i = 5 to 1 step -1
print i
next
' Output:
' This is part1.bas
' 1 2 3 4 5
' This is part2.bas
' 5 4 3 2 1
Code samples using INCLUDE
System
CHAIN
COMMAND
CWD
DELAY
ENV
ENV
EXEC
EXPORT
FRE
HOME
IMPORT
INCLUDE
MAXINT
NIL
OPTION
PAUSE
PI
PROGLINE
RANDOMIZE
RUN
SBVER
SELF
STKDUMP
TROFF
TRON
UNIT
If there is insufficient information on this page and you wish learn more about INCLUDE,
please send an email to smallbasic@gmail.com. You can help to improve information about
INCLUDE by submitting a pull request,
click View Source for details. Note, an offline language reference text file is also available - see the Download section.