Arc Forum
new
|
comments
|
leaders
|
submit
login
6 points
by
absz
6029 days ago |
link
|
parent
You can also use
nil
or
t
as your "ignored variable", instead of
_
; they won't even be rebound. E.g.
(let (a nil nil d) (range 1 4) (list a d))
produces the list
(1 4)
.