Closed JoePelz closed 9 years ago
operators && and || have now been implemented as of commit 5576bcaa6a700fee36064239d09bfbfe739f6779 Until precedence is implemented, the boolean statements must be surrounded by parentheses. i.e.:
//do this
if (1<2) && (3<4)
//and not this
if 1<2 && 3<4
if statements work fine with a single simple condition to check but combining multiple conditions with && and || operators fail. e.g.
workaround: