Luukdegram/luf

Optimize simple instructions

Opened this issue · 0 comments

Some instructions can easily be optimized such as:

const x = 5 + 5 can be optimized to const x = 10.
const myFunc = fn() { return 5 } can be optomized to return 5.