Open darrenmothersele opened 10 years ago
I would expect the following to draw a box:
x: 0 y: 1 if x > 0 | y > 0 box end
It does not because the precedence between the ">" and "|" operators is incorrect. If you add parentheses it evaluates correctly, i.e.
x: 0 y: 1 if (x > 0) | (y > 0) box end
I would expect the following to draw a box: