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.
3 番目の変数を使用せずに LISP で 2 つの変数を交換するにはどうすればよいですか?
(rotatef a b)
別の代替手段、「並列setf」:
(psetf abba)
また:
(let ((ab) (ba)) ...)