ceil [function]

ceil( x )

returns the smallest integer that is not smaller than x, as real

ceil( 3.4 ); // real (4)
ceil( 3.8 ); // real (4)
ceil( 4.2 ); // real (5)
ceil( -3.1 ); // real (-3)