An expression is a combination of operators and arguments that is calculated
to a result.
Available operators:
Operator Type of operator Type
* / Multiply, divide Integer
+ - Add, subtract Integer, String (only add)
< > Comparisation less/greater Integer
<= >= Less or equal, greater or equal Integer
= = Equal Integer
!= Not equal Integer
Example:
Count = 2 + 9 * 10
Transmit
Expressions