Skip to content
TurtleKitty edited this page May 17, 2019 · 2 revisions

not

(not obj) returns the inverse of obj.to-bool.

(not true)  ; false
(not "foo") ; false
(not "")    ; true
(not 0)     ; true
(not ())    ; true
Clone this wiki locally