===== Ceil =====
==== Format ====
**ceil** ( //expression// )
==== Description ====
Returns the lowest integer that is greater than or equal to //expression//.
==== See Also ====
[[floor|Floor]]
==== Example ====
print ceil(9.1)
print ceil(-5.4)
will print
10
-5