Retro Rocket OS
BASIC-Powered Operating System
Loading...
Searching...
No Matches
BITXNOR Function
X = BITXNOR(a, b)

Computes the bitwise equivalence (XNOR) of two integers.


How to read it

  • Equivalent to NOT (a XOR b).
  • Returns all bits that are the same in both operands.

Examples

PRINT BITXNOR(&6, &3)

Notes

  • Operates on 64-bit integers.

See also:
BITEOR ยท BITNOT