9 lines
125 B
Plaintext
9 lines
125 B
Plaintext
@LAZYGLOBAL OFF.
|
|
|
|
function round_towards_zero {
|
|
parameter n.
|
|
|
|
if n < 0 return ceiling(n).
|
|
return floor(n).
|
|
}
|