Adds two variables.
pyAdd(arg0, arg1)
Variable 1 to be added
Variable 2 to be added
Adds the two arguments and returns the result; equivalent to arg1 + arg2. Arguments can be of type int, double, string, bool or python variable.
startPy py("a = 5") var = pyGet("a") pyAdd(var,3) quitPy