15 lines
273 B
Markdown
15 lines
273 B
Markdown
# math_Modulus
|
|
Gets the remainder of dividing the two numbers.
|
|
|
|
## Arguments
|
|
- number1 (double): First number
|
|
- number2 (double): Second number
|
|
|
|
## Returns
|
|
remainder (double): The remainder.
|
|
|
|
## Example
|
|
```python
|
|
call !math_Modulus 4 3 &remainder
|
|
println $remainder # 1
|
|
``` |