p2sh 0.4.3

The p2sh Programming language interpreter
# Expression precedence

The operators are listed in order of precedence, from the highest to the lowest.

| Operators / Expression     | Associativity |
|----------------------------|---------------|
| [] . ()                    | left to right |
| ! - ~ (Unary)              | left to right |
| * / %                      | left to right |
| + -                        | left to right |
| << >>                      | left to right |
| &                          | left to right |
| ^                          | left to right |
| \|                         | left to right |
| == != < > <= >=            | left to right |
| &&                         | left to right |
| \|\|                       | left to right |
| .. ..=                     | left to right |
| \| (in match pattern)      | left to right |
| =                          | right to left |