10.15.6 Divide
Divide divides the subject by the value specified in the Object parameter.
Input Parameters
Object – Value by which the subject is divided
Example
#Float := #Float.Divide(#Float2)
This is equivalent to writing
#Float /= #Float2
or
#Float := #Float / #Float2
Ý 10.15 Floating Point Intrinsic Functions