div( <var>, <num1>, <num2> )

Description

This will set the specified var to the result of num1 divided by num2.

Example

A = B ÷ 2 (result will be an integer):
div(A, B, 2)
R = T ÷ Z (result will be a float):
div(R, T, Z)