Skip to content

Instantly share code, notes, and snippets.

@zhouqiang-cl
Created December 5, 2016 08:49
Show Gist options
  • Save zhouqiang-cl/0cd52c7270e19adff73c5fbf21511737 to your computer and use it in GitHub Desktop.
Save zhouqiang-cl/0cd52c7270e19adff73c5fbf21511737 to your computer and use it in GitHub Desktop.
common lisp 的点字符.
形式
(item1 item2 . tail)
描述
tail 代表 list 最后的一串 object
代码
* '(A B C . (D E F))
(A B C D E F)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment