Description:
Discussion about LISP.
|
|
|
declaring 'ignore' inside a loop using destructuring
|
| |
Here's a question for the loopers. Say I'm using loop destructuring like this: (defun foo (some-list) (loop for (a b c) in some-list do ;; code that uses a and c, but not b: (print a) (print c))) (compile 'foo) -> Warning: Variable b is never used. I know that in a destructuring-bind or a multivalue-bind you can just... more »
|
|
|