Created
December 20, 2016 14:54
-
-
Save zhouqiang-cl/3dd5e942d36f21dfc3df8a6b64e7c3be to your computer and use it in GitHub Desktop.
common lisp 的自求值对象
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
描述 | |
自求值对象是指返回他自己的值作为唯一值, 即不是 symbol 也不是 cons | |
lisp 中有三种自求值对象, 数字, pathname, array。 | |
代码 | |
* 3 | |
3 | |
* #p"S:[BILL]OTHELLO.TXT" | |
#P"S:[BILL]OTHELLO.TXT" | |
* #(a b c) | |
#(A B C) | |
* "fred smith" | |
"fred smith" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment