1

an anonymous user · November 27, 2024
(def x 'y)
(def y 'x)

(let [temp x]
  (def x y)
  (def y temp))

(println x)
Output

Comments

Please sign up or log in to contribute to the discussion.