CalcIt Commands

RESULT

Every piece of CalcIt code returns a value and every statement  that do not assigns its value to a variable, changes the returned value of the whole code.

RESULT reads the currently returned value of the executing CalcIt code. (or the Local function if it is used inside a local function) E.g.

12+1000;
RESULT*3;

The first statement changes the returned value of the executing code to 1012. The second statement read the current returned value (1012) multiplies it by 3 and changes again the returned value of the code to 3036.

Go Back