Subject: Re: Recursive Anonymous Lambda Was: (lambda ()) vs #'(lambda ()) From: Erik Naggum <erik@naggum.net> Date: Mon, 07 Jan 2002 21:14:38 GMT Newsgroups: comp.lang.lisp Message-ID: <3219426877120035@naggum.net> * "Michael J. Ferrador" <n2kra@orn.com> | Has anyone ever thought it would be nice to recurse an anonymous lambda? (defun jestcall (function &rest arg) (apply function function args)) Where you would funcall a function that would funcall itself by name to make a recursive call, you jestcall a function that jestcalls its first argument to make a recursive call. /// --