diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -186,6 +186,14 @@ atom(s), otherwise `f`: (consp t) ; f (consp '(a b)) ; t +`(singul x)` returns `t` if `x` is either an empty list `()`, or an atom, +otherwise `f`: + + (singul ()) ; t + (singul +1) ; t + (singul t) ; t + (singul '(a b)) ; f + `(zerop x)` returns `t` if `x` is the number zero, otherwise `f`: (zerop +0) ; t |
