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

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

quotient function

    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)
    ]

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS