Common Lisp: Macroexpand-time branching Posted bygxJanuary 11, 2022January 11, 2022Posted inProgramming Let’s consider the following function: (defun make-adder (x huge-p)(lambda (y) (+ x y (if huge-p 1000 0)))) Read more… Share this:TwitterFacebookLike this:Like Loading... Related