Are If Thens faster then multiplication and assignment?
I have a quick question, suppose I have the following code and it's repeated in a simliar way 10 times for example. if blah then number = number + 2^n end if Would it be faster to evaluate: number = number + blah*2^n? Which also brings the question, can you multiply a boolean value times a integer (Although I am not sure the ty...