Dayananda Posted January 29, 2020 Posted January 29, 2020 (edited) (setq A (list 1 2 3)) (setq B (list 4 5 6)) (setq C (list 7 8 9)) How can I join above lest to get as D = ( 1 2 3 4 5 6 7 8 9) Edited January 29, 2020 by Dayananda Quote
dlanorh Posted January 29, 2020 Posted January 29, 2020 3 minutes ago, Dayananda said: (setq A (list 1 2 3)) (setq B (list 4 5 6)) (setq B (list 7 8 9)) How can I join above lest to get as C = ( 1 2 3 4 5 6 7 8 9) Use append function eg (setq x (append a b)) 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.