Source code
This command allows you to use your own scripting in the Gentee programming language. You can find all necessary 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, define the commands of Gentee language, such as func, include, define, global etc., in Source code. In this case, the Source code may be :
global : uint myg func myfunc( uint par ) { myg = par print("myg = \( myg )\n") }
Source code command
Source code
You can insert any source code in the Gentee programming language. This command allows you to insert other commands within themselves. In this case, use the macro $body$ to use internal commands. Here is an example of executing internal commands while the value of the variable mypar is not 0.
while macrox_getint("mypar") { $body$ }