Re: def app = apply, problem



On Apr 29, 5:34 pm, globalrev <skanem...@xxxxxxxx> wrote:
instead of:
CL-USER> (apply #'+ '(1 2 3))
6

i want to do:
(app + (1 2 3))

(def app (oper expr)
(apply #'oper 'expr))


(defmacro app (op &rest args) `(apply (function ,op) ,@args)))

I'll leave it to others to explain why the whole idea is ill-
conceived.
.