Given the following let function:
(let ((foo (list a b c d)))
foo)
How can i modify the list foo?
(let ((foo (list a b c d)))
;some code
foo)
so the returned foo looks like eks: '(some new list) or (a b modified d)
i tried (set) but foo will still return as the original list.