\

\


\= Index Level ]
Syntax dividend \ divisor
Category BASIC
Type Operator, Arithmetic
Description "\" calculates the remainder of dividing the dividend by the divisor (otherwise known as the modulo).

There is no limitation on the numeric value of the dividend or divisor.
Options
See Also MOD REM \= operators
Example x = 21
y = 8
z = x \ y
print z                                                                                                              
In this example, "5" (the remainder of 21/8) would be printed.
Warnings
Compatibility D3 7.0 AP R83
\= Index Level ]