func round(n : Number) -> Integer return floor(n+0.5)
round(1.9) = 2 round(1.49999) = 1 round(-1.9) = -2 round(-1.5) = -1