aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2021-03-14 11:59:03 -0500
committerColin Okay <okay@toyful.space>2021-03-14 11:59:03 -0500
commiteca5721faa65477f9adfc3f5a5627435f9e005b1 (patch)
treef277893cfe4efc754c906c53adf5e5dc83a5cd7c
parent5e11ca9b467f7cd058864e6a21586edbaf22957e (diff)
docstring in eg
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index f68fc3f..6eefa12 100644
--- a/README.md
+++ b/README.md
@@ -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))