I have the following code:
Code: Select all
(set 'a 0)
(set 'b '(0 1 2 3 4 a))
So, during initialization of 'b, the list will have assigned the value of 'a, instead of the symbol 'a itself.b
(0 1 2 3 4 0)
Can this be done without tricks like (push) or (nth-set)? A similar thing is possible with an array, but is it possible with lists also?
Peter