Does anyone know if the AutoIt compiler does any type of optimization? Eg:
Before Optimization:
MsgBox(0, "Test", (174/14) * 15.64)
After Optimization:
MsgBox(0, "Test", 194.38)
I know that this would barley make any speed difference at all, but if it were a large script, and not doing the calculations beforehand made it more readable, this could be a big time saver.