Name: Anonymous 2013-07-10 8:53
http://www.bookshelf.jp/texi/onlisp/onlisp_9.html#SEC61
There is no way to duplicate the behavior of this macro with a function.
It is true for shitty CL. But it is false for a Lisp that supports fexprs.
(defmacro while (test &body body)
`(do ()
((not ,test))
,@body))There is no way to duplicate the behavior of this macro with a function.
It is true for shitty CL. But it is false for a Lisp that supports fexprs.