Created
December 1, 2016 12:00
-
-
Save zhouqiang-cl/a97678730d1496c95aa77b3f6aa0a729 to your computer and use it in GitHub Desktop.
common lisp 的函数 ATOM
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
语法 | |
atom object => generalized-boolean | |
变量和值 | |
object --- 一个object | |
generalized-boolean --- 一个通用型 boolean | |
描述 | |
如果 object 是一个 ATOM 类型的对象, 返回 true, 否则返回 false | |
代码 | |
* (atom 'sss) | |
T | |
* (atom (cons 1 2)) | |
NIL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment