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

Computes the bitwise NAND of two integers.


How to read it

  • Equivalent to NOT (a AND b).

Examples

PRINT BITNAND(&6, &3)

Notes

  • Operates on 64-bit integers.

See also:
BITAND ยท BITNOR