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))