CalcIt Commands

IF
...
...
ELSE
...
...
END;

E.g.

IF(Cont);
 ....
 ....
ELSE
 ....
 ....
END;

If conditional expression Cont returns TRUE (1) then statements under IF are executed else statements under ELSE are executed. ELSE is optional. See also SELECT.

Go Back