/proc/ceil(A)
Arguments:
A: Number
Returns:
num: The ceiling of the provided number.

The ceiling is the largest integer greater than or equal to the provided number.

world.log << ceil(1.00001) // 2
world.log << ceil(-0.00001) // 0