Skip to content
Chris Petersen edited this page Oct 16, 2014 · 1 revision

exact-floor returns a rounded number. This one rounds down!

Parameter Description
x Number to be rounded

Example

Example 1: Round a number

> (exact-floor 3.1)
3
> (exact-floor 3.999)  
3
Clone this wiki locally