Re: def app = apply, problem



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

i want to do:
(app + (1 2 3))
Have you thought about writing (+ 1 2 3) instead? You'll be saving 5
characters.
.