SketchyLISP Reference |
Copyright (C) 2007 Nils M Holm |
<<[normalize] | [Index] | [not-equal?]>> |
Conformance: R5RS Scheme
Purpose: Logical negation.
Arguments:
A - truth value
Implementation:
(define (not a) (eq? a #f))
Example:
(not #f) => #t
See also:
neq?.
<<[normalize] | [Index] | [not-equal?]>> |