Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有
(setq a '(0 1)) (setq b '(3 4)) (setq c '(6 8))
我希望得到输出x:
x
((0 1)(3 4)(6 8))
请指教。
哇在这里错过了一些非常基本的东西!
(setq x (list a b c))