Syntax
ceil(number)
Description
The ceil() function rounds a number UP to the nearest integer, if necessary, and returns the result.
Example
include("math") println(ceil(1.1)) 2
ceil(number)
The ceil() function rounds a number UP to the nearest integer, if necessary, and returns the result.
include("math") println(ceil(1.1)) 2