I wonder why in the following code, d is not being consed into x.
Any hints are much appreciated.
(defun it (x)
(setq f '(a b c))
(dolist (d f)
(cons d x))
(print x))
Thank you!
|
|
I wonder why in the following code,
Thank you! |
||||||||
|
|
|
I don't know a lot about LISP, but here's a few things I think I know that might help you:
|
||||||||
|
|
|
You need to use PUSH to update a variable destructively. CONS just returns a new cons cell. If you don't do anything with that cons cell, then it is gone. Also not that you need to declare all variables. LET introduces a new local variable F, so LET is useful in your example. Just doing SETQ or SETF on an undeclared variable is not a good thing to do - actually in the Lisp standard, the consequences are undefined for such an operation.
Or use a more functional approach.
You also might want to throw in a call to REVERSE to get a different order of list elements. |
||
|
|
|
|
If I understand your intention properly, you want to append the list
Note that |
|||
|
|