Louis D'hauwe

Results 20 issues of Louis D'hauwe

https://twitter.com/twostraws/status/972914692195790849

bug

Should work just like in Swift, enforce an exit within the else block.

Start with simple "add" optimization

Make sure overflow is not an issue

Currently, ```3^3^3``` evaluates to ```19.683```. This is achieved because the powers are executed from left to right: ```3^3^3``` => ```(3^3)^3``` => ```27^3``` => ```19.683``` The correct behavior is to execute...