Division Operator (/)
The division operator divides its first operand by the second. The result is always rounded down to the next integer value.
If the second operand is zero, then a runtime error occurs and XJEase execution is halted.
Example
INT a, b, c; a := 10; b := 3; c := a / b; // c = 3
XJTAG v4.2.5
