diff options
-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)) |