All preprocessor directives start with //#
. The rest of the line is then interpreted as a preprocessor directive.
include "[CLUScript Filename]"
include
directive includes another CLUScript source file at the position where it appears. For example,
// Define some variables A = VecE3(1,2,0); b = 1.4; // Now include another CLUScript which will // be inserted at this position. //# include "StdCalc.clu" // And some more code // ...