Operators
| Operator | Description |
|---|---|
- | Changes the sign. Unary operator. |
+ | Adds two real numbers. Binary operator. |
- | Subtracts a real number from another real number. Binary operator. |
* | Multiplies two real numbers. Binary operator. |
/ | Divides by a real number. Binary operator. |
<, <=, >, >=, ==, != | Compare two real numbers: less than, less than or equal to, greater than, greater than or equal to, equal to, not equal to. Binary operators. Return a value of type Logic. |
