Arithmetic Operators

<< Click to Display Table of Contents >>

Navigation:  Project > Scripts > ST language > Operators and Expressions in STL > Operators >

Arithmetic Operators

Previous pageReturn to chapter overviewNext page

All the arithmetic operators are often just called mathematical operators because they represent math. The result will always be the mathematical result of the expression.

+ (add)

– (subtract/negate)

* (multiply)

/ (divide)

% (modulo divide)

Example:

15 % 4

Result:

3