Source code

Source code

This command allows you to use your own scripting by using Gentee programming language. You can find all required information about this language on the site Gentee programming language.

Description
Optionally, you may add comments here describing the purpose of this element.
External source code
If you check this checkbox, specify the commands of Gentee language like func, include, define, global etc. in Source code below. In this case, the Source code may be
global : uint myg 

func myfunc( uint par ) 
{ 
   myg = par 
   print("myg = \( myg )\n") 
} 
Source code
You can insert any source code in the Gentee programming language. This command allows you to insert other commands inside itself. In this case, use the $body$ macro in order to use internal commands. Here is an example of executing internal commands while the variable value mypar is not 0.
while macrox_getint("mypar") 
{ 
   $body$ 
}