Plaster
New
List
Login
common-lisp
default
anonymous
2018.08.12 21:46:07
(defmacro define-something (name &key has-thing) `(defmacro ,name ,(if has-thing '(thing) ()) `(let ((foo (make-foo))) ;; Here I want to include something only if HAS-THING foo)))
Raw
Annotate
Repaste
Edit