calc.rem
Calculate the remainder of two numbers.
Example
#calc.rem(20, 6) \
#calc.rem(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 remainder.
divisor
The divisor of the remainder.