Methods
| Method | Description |
|---|---|
Int abs( Int ) | Returns the absolute value of an integer. |
Operators
| Operator | Description |
|---|---|
- | Changes the sign. Unary operator. |
+ | Adds integers. Binary operator. |
- | Subtracts one integer from another. Binary operator. |
* | Multiplies integers. Binary operator. |
/ | Divides integers. Binary operator. |
<, <=, >, >=, ==, != | Operators of comparison: 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. |
