Supported operations are:
+, -, *, /, ^(power) and ~(square root).
The operators are right associative, for example: 2 -1 -1 is evaluated as 2 - (1 - 1) which results in 2.
For an example of a left-associative evaluation see the tiny math processor demo.