Index // Ceil


Format:

ceil( expression )

Description:

Returns the lowest integer that is greater than or equal to expression.

See Also:

Floor

Example:

print ceil(9.1)
print ceil(-5.4)
will print
10
-5