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

Computes the bitwise OR of two integers.


How to read it

  • Returns all bits set that are set in a or b.

Examples

PRINT BITOR(&5, &3)

This example produces 7.


Notes

  • Operates on 64-bit integers.

See also:
BITAND · BITEOR · BITNOR