Created
December 4, 2016 11:43
-
-
Save zhouqiang-cl/5c42b772eddfc28c7b2cf73ce4dc2d05 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
描述 | |
/ 是 最近的一个values的 list, // 是倒数第二个values的 list, /// 是倒数第三个values的list | |
代码 | |
* (values 'a1 'a2) | |
A1 | |
A2 | |
* / | |
(A1 A2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment