|
@@ -44,7 +44,8 @@ The following operators are available:
|
|
|
| Division (``/``) | Performs and integer division if both operands are integers. |
|
|
|
| | If at least one of them is a floating-point number, returns a floating-point value. |
|
|
|
+------------------------+-------------------------------------------------------------------------------------+
|
|
|
-| Modulo (``%``) | Returns the remainder of an integer division. |
|
|
|
+| Remainder (``%``) | Returns the remainder of an integer division (modulo). |
|
|
|
+| | The result will always have the sign of the dividend. |
|
|
|
+------------------------+-------------------------------------------------------------------------------------+
|
|
|
|
|
|
Spaces around operators are optional. Also, keep in mind the usual
|