Add Exercise 2.23

This commit is contained in:
Tobias Eidelpes 2022-11-08 17:19:24 +01:00
parent d7215f85ca
commit 2e5b4cee2d

View File

@ -141,3 +141,7 @@ and upper bound."
(defun square-list-mapcar (items)
(mapcar #'(lambda (x) (* x x)) items))
;; Exercise 2.23
(defun for-each (func thing)
(mapcar func thing))