Causes external NetLogo source files (with the .nls
suffix) to be included in this model. Included files may contain breed, variable, and procedure definitions. __includes
can only be used once per file.
The file names must be strings, for example:
__includes [ "utils.nls" ]
Or, for multiple files:
__includes [ "utils1.nls" "utils2.nls" ]
Take me to the full NetLogo Dictionary