You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
(defn not [object] |
|
"Return true if OBJECT is nil or false, and return false otherwise." |
|
(if object false true)) |
|
|
|
;; Local Variables: |
|
;; eval: (emacs-lisp-mode) |
|
;; End:
|
|
|