\ is a standard operator that divides two numbers and returns an integer result (ie retains only a whole number, no fractional or decimal part)
SYNTAX:
Exp \ Exp
Where:
Exp is an Expression
EXAMPLES:
5 \ 4 = 1
11 \ 4 = 2 - Does not round, i.e. 11/4 = 2.75, integer value is 2
V1 \ V5
See Also: / division operator