jspicl icon indicating copy to clipboard operation
jspicl copied to clipboard

Add support for bitwise operators

Open AgronKabashi opened this issue 6 years ago • 0 comments

Examples:

if (a & b) {
  ...
}

if (a | b) {
  ...
}

Logic should be added in binaryExpression.js

Available PICO 8 operators that could be used:

band bor bxor bnot

AgronKabashi avatar Feb 03 '20 20:02 AgronKabashi