I am trying to create a sequence of variables say x1,x2,...,xn and I would greatly appreciate some feedback. I would like to think the code would be as simple as:
(dotimes (i 10 nil)
(setf xi 'value for xi))
so that in the end I have
>x1
--> value for x1
>x2
--> value for x2
...
Thanks in advance for any comments.