mod
Calculate the modulus of two numbers.
Example
#calc.mod(20, 6) \
#calc.mod(1.75, 0.5)

ParametersParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters are the inputs to a function. They are specified in parentheses after the function name.
dividend
The dividend of the modulus.
divisor
The divisor of the modulus.