Hi, On Sat, 28 Feb 2004, Mark Hubbart wrote: > From my (very limited) experience with it, it doesn't seem that lisp > has an eval statement, so much as lisp *is* an eval statement :) Lisp has always had an eval statement, ever since 1960 when the first paper on Lisp[1] was published. CL-USER(6): (eval '(defun f (x) (+ x 1))) F CL-USER(7): (f 3) 4 [1] http://www-formal.stanford.edu/jmc/recursive.html , Tobias