Skip to content

Instantly share code, notes, and snippets.

@zhouqiang-cl
Created December 4, 2016 11:43
Show Gist options
  • Save zhouqiang-cl/5c42b772eddfc28c7b2cf73ce4dc2d05 to your computer and use it in GitHub Desktop.
Save zhouqiang-cl/5c42b772eddfc28c7b2cf73ce4dc2d05 to your computer and use it in GitHub Desktop.
common lisp 的变量 /,//,///
描述
/ 是 最近的一个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