Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

quotient function (See related posts)

    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.


Click here to browse all 4858 code snippets

Related Posts