Plaster
New
List
Login
common-lisp
default
anonymous
2019.06.18 10:10:33
(defmacro test (a &body body) `(,a ,@body)) ;; works fine (test "yes" "yo") (defmacro test2 (&body body) `(,@body)) (test2 "yes" "yo") #| Would expect (test2 "yes" "yo") |#
Raw
Annotate
Repaste
Edit