result = Div(value1, value2)
value1 by value2 and returns the result.
Note that although the division will use floating point precision, value2 must not
be 0. If you need to divide by zero in floating point, use RawDiv()
instead. See RawDiv for details.
a=16 Div(a,4) Print(a)This will print "4" to the screen.