| = | (implicit) assignment | Assigns the result of an expression to a variable. Also, the first number the Console BASIC encounters is implicitly assigned to the ACCU |
| + | add | Adds the next number to the ACCU |
| - | subtract | Subtracts the next number from the ACCU |
| * | multiply | Multiplies the ACCU with a 16-bit number |
| / | divide | Divides the ACCU by a 16-bit number |
| % | modulo | Sets the ACCU to the modulo or remainder of the division of the current value in the ACCU divided by the next number |
| & | and | Performs a logical AND operation on the ACCU and the next number |
| | | or | Performs a logical OR operation on the ACCU and the next number |
| ^ | exclusive or | Performs a logical Exclusive OR operation on the ACCU and the next number |
| ! | not | Negates the ACCU: resulting in every binary 0 to become a 1 and a 1 to become a 0. Basicly, the operation subtracts the ACCU from $FFFF (unsigned) |
| () | parentheses | Anything between (nested) parantheses is calculated first, before continuing outside the parentheses |