1 /** \defgroup globalFunctions Global Functions
2  * \{
3  */
4 
5 /** \brief Executes the specified command with the specified arguments.
6  */
7 void execute(String command, ...);
8 
9 
10 /** \brief Adds the contents of the specified file to the source script at the point where the function is called.
11  */
12 void include(String scriptPath);
13 
14 /** \brief Writes the passed arguments to the standard output and the Debug Output widget of the script debugger.
15  * It is intended to be used for simple debugging purposes.
16  */
17 void print(...);
18 
19 /** \}
20  */
21