Uninterned symbols symbols

后端 未结 2 488
逝去的感伤
逝去的感伤 2021-01-17 14:54

There is something I can\'t understand about Common lisp.

Assume I\'m writing a macro similar to this:

(defmacro test-macro () 
   (let ((result (gen         


        
2条回答
  •  醉话见心
    2021-01-17 15:56

    gensym generate a symbol and when you print it you get the "string" representation of that symbol which isn't the same thing as "reader" representation i.e the code representation of the symbol.

提交回复
热议问题