summaryrefslogtreecommitdiff
path: root/list-functions-2.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'list-functions-2.lisp')
-rw-r--r--list-functions-2.lisp6
1 files changed, 6 insertions, 0 deletions
diff --git a/list-functions-2.lisp b/list-functions-2.lisp
index 09c8449..9bdb53e 100644
--- a/list-functions-2.lisp
+++ b/list-functions-2.lisp
@@ -115,3 +115,9 @@
(defun mapcon (function list &rest more-lists)
(%append (apply 'maplist (list* function list more-lists))))
+
+(defun nreverse (list)
+ (reverse list))
+
+(defun acons (indicator value alist)
+ (cons (cons indicator value) alist))