aboutsummaryrefslogtreecommitdiffstats
path: root/stdlib/common.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/common.lisp')
-rw-r--r--stdlib/common.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/common.lisp b/stdlib/common.lisp
index 2db5d62..efb1183 100644
--- a/stdlib/common.lisp
+++ b/stdlib/common.lisp
@@ -26,7 +26,7 @@
otherwise
(prepend (f (head lst)) (map f (tail lst))))))
-(map (+ 1) [1 2 3])
+; (map (+ 1) [1 2 3])
;; foldr :: (a -> b -> b) -> b -> [a] -> b
(let! foldr (\[f accumulator lst]