summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--control-flow.lisp3
-rw-r--r--list-functions-2.lisp4
2 files changed, 7 insertions, 0 deletions
diff --git a/control-flow.lisp b/control-flow.lisp
index 0d380aa..9fae748 100644
--- a/control-flow.lisp
+++ b/control-flow.lisp
@@ -1,3 +1,6 @@
+(export '(identity constantly complement))
+
+
(defun identity (x)
x)
diff --git a/list-functions-2.lisp b/list-functions-2.lisp
index 2e73a46..0bae5f3 100644
--- a/list-functions-2.lisp
+++ b/list-functions-2.lisp
@@ -1,3 +1,7 @@
+(export '(copy-tree assoc assoc-if assoc-if-not rassoc rassoc-if
+ rassoc-if-not sublis nsublis))
+
+
(defun copy-tree (tree)
(typecase tree
(cons (cons (copy-tree (car cons)) (copy-tree (cdr cons))))