Lambda - Example
Example
(defun increment-all (&rest numbers)
(mapcar #'(lambda (x) (+ x 1))
numbers))
(increment-all 5 6 7 8)
(6 7 8 9)
Previous slide
Next slide
Back to first slide
View graphic version