Last active
November 26, 2016 08:43
-
-
Save zhouqiang-cl/6f35fd874f8dc5c5f61ef639fafd9d6b to your computer and use it in GitHub Desktop.
common lisp 的函数 GENSYM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
gensym &optional x => new-symbol | |
参数和值 | |
x --- 一个 string 或者一个 number | |
new-symbol --- 一个新的全局 symbol | |
描述 | |
产生一个新的符号 | |
代码 | |
* (gensym) | |
#:G605 | |
* (gensym) | |
#:G606 | |
* (gensym 100) | |
#:G100 | |
* (gensym "test") | |
#:|test607| | |
* (gensym "TEST") | |
#:TEST608 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment