Implicit Closures
Closures happen implicitly when ever a function refers to something in the lexical environment
> (defun add-to-list (num lst)
(mapcar #'(lambda (x) (+ x num)) lst))
ADD-TO-LIST
Previous slide
Next slide
Back to first slide
View graphic version