I was wondering can we set a list from an already existing list?
(setq example1 '(1 2 3))
(setq example2 '((caddr example1) (cadr example1) (car example1)))
I know the way I've written it won't achieve the desired result but is there anyway to achieve that result?And how?
Thank you for your time!