summaryrefslogtreecommitdiff
path: root/booleans/booleans.scm
blob: 6b2fe074c69c4f84289466c1accd54da54c1aba1 (plain)
1
2
3
4
5
6
(define-module (booleans))

(define-public (boolean-invert bool)
  "Returns the opposite value of the
passed in boolean."
  (not bool))