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))