_From @Inve1951 on [2016-09-18 11:44](https://github.com/coffeescript6/discuss/issues/39)_ I'm following your progress in this project and want to throw in another topic: Using `Math.floor()` on negative numbers gives non-straight-forward results. For example right now `-5 // 3` compiles to `Math.floor(-5 / 3)` which results in `-2` when `-1` would be the result of proper "integer division". I came across [this stackoverflow question](http://stackoverflow.com/questions/4228356/integer-division-in-javascript) which displays some nice alterantives which even seem to perform better. Keep up that good work of yours. :+1: