Source code
New in 2021!   Eonza automation software - free, open source cross-platform automation software for easy creation and management of scripts.

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 Free open-source 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. Use it if you opened and inserted some commands into this command. 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 1.
while defmacro.getint("mypar")
{
   $body$
}