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