Updated Expressions in Rules (markdown)

Michael Ingraham 2019-10-10 10:47:45 -04:00
parent b29c81de93
commit dc0b432809
1 changed files with 2 additions and 2 deletions

@ -16,8 +16,8 @@ Expressions can use of the following operators. They are listed by the order of
* `+` and `-` (addition and subtraction)
**Order of Operations Example**
* `1\+2\*2` results in 5.0 as the multiplication is done first due to its higher priority
* `(1\+2)\*2` results in 6.0
* `1+2*2` results in 5.0 as the multiplication is done first due to its higher priority
* `(1+2)*2` results in 6.0
In addition to numeric constants, the following symbolic values can be used: