lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Sat, Dec 12, 2020 at 11:26 PM Dibyendu Majumdar wrote:
For examples see:
https://github.com/dibyendumajumdar/ravi-compiler/tree/master/examples

Why do you write
prime = i + i + 3;
Is the compiler not clever enough to optimize (2*i) as (i+i) without your help?