Implements the "ceiling" function. Returns the least integer which is greater than or equal to the specified argument.

Format: Ceil(exprn)

Arguments:

Return type: int

Error conditions: Returns 'Bottom' if exprn evaluates to 'Bottom'.

Example:

value = ceil(5.5) ; Sets value to 6.
value = ceil(-2) ; Sets value to -2.