Syntax
include(“name”)
Description
In MSL, the include() function tells the evaluator to insert the contents of another file into the source code at the point where the include() function is found. Includes are typically used to include files for MSL functions that are held outside of the current source file.
Example
include("pwd") // Load password functions println(getpwent("root"))