flet vars



Is it possible to change the values of the variables in an flet?

(flet ( (function1 () (format t "hi from function1~%")))
(function1)
; change what function1 refers to
(function1))
.