Not sure if the following is a bug or intentional:
The following didn't work:
Code:If a = x and (b and c) then
Had to write the following instead:
Code:If a = x then if b and c then
Maybe I'm just not supposed to mix logical expressions with bitwise expressions.