quotient: func [
{This could also be called integer-divide. Divides Value2 into
Value1 and return the integer portion of the result.}
value1 [number! money! time!]
value2 [number! money! time!]
][
to-integer (value1 / value2)
]
You need to create an account or log in to post comments to this site.