errors regarding data types
When using the free flowing script editor if you return a value of the wrong data type, the error message uses different terminology for data types than the deluge scripting language does.
E.g.:
int calc()
{
return 1.2;
}
Error message: The expression in return statement is of type DECIMAL It should be of type BIGINT
In the language DECIMAL and BIGINT are referred to as float and int respectively.
This makes the error much more obfuscated!!!
mickeyreiss