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

exact-ceiling returns a rounded number. This one rounds up!

Parameter Description
x Number to be rounded

Example

Example 1: Round a number

> (exact-ceiling 3.1)
4
> (exact-ceiling 3.999)  
4
Clone this wiki locally