Apple iPad Best of 2012 Runner Up: Eufloria HD
0 Members and 1 Guest are viewing this topic.
if a == 0 or a == 2 then if b < c then --do stuff endend
Unpredictable results. Best not to mix your "ands" and "ors".A better way is like this:Code: [Select]if a == 0 or a == 2 if b < c then --do stuff endend
if a == 0 or a == 2 if b < c then --do stuff endend