Functions Documentation
View Function Edit Function
Name modulo
Syntax (modulo number number)
Argument List number: The dividend of the two numbers.
number: The divisor of the two numbers.
Returns number: The remainder of the two numbers passed
Category 0.99, math
Description Finds the remainder of the two numbers and returns it.
Example
(modulo 56 34)

This code will return the number 22.
Comment Important for many things including bounding an arbitrary number between two numbers.