bit-operations.scm 116 B

12345678
  1. (define-module (bit-operations)
  2. #:export (xor))
  3. (define (xor a b)
  4. (or (and a (not b))
  5. (and (not a) b)))