×
Menu
Index

INCLUDE Keyword

 
Usage:
INCLUDE "filename"
 
Description:
Use this keyword to reference another file in your script. The include keyword was added in TBSVER 7 and must be used outside of any subroutines.
 
Example:
include "my_common_subroutines.inc" // includes my_sqrt subroutine
 
sub main()
   printl("The square root of 81 is ", my_sqrt(81))
end sub