diff options
author | Colin Okay <okay@toyful.space> | 2021-03-14 11:59:03 -0500 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2021-03-14 11:59:03 -0500 |
commit | eca5721faa65477f9adfc3f5a5627435f9e005b1 (patch) | |
tree | f277893cfe4efc754c906c53adf5e5dc83a5cd7c | |
parent | 5e11ca9b467f7cd058864e6a21586edbaf22957e (diff) |
docstring in eg
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -109,6 +109,7 @@ example apears at the end of the document, following the tutorial. ``` lisp (defun all-subsets (list) + "Generate the set of all subsets of a given set." (if (null list) (seq (list nil)) (concat! (all-subsets (cdr list)) (map! (lambda (sub) (cons (car list) sub)) |