@LAZYGLOBAL OFF.
function round_towards_zero {
parameter n.
if n < 0 return ceiling(n).
return floor(n).
}