Aha.
Thanks!
Search found 4 matches
- Tue Sep 22, 2009 2:57 pm
- Forum: Common Lisp
- Topic: Newbie question: Interpreted CL
- Replies: 4
- Views: 7765
- Tue Sep 22, 2009 7:40 am
- Forum: Common Lisp
- Topic: Newbie question: Interpreted CL
- Replies: 4
- Views: 7765
Newbie question: Interpreted CL
Hi all, I've read somewhere recently that some people use CLISP for development but not for production. Ignoring the licensing, is this due to the fact that an interpreted implementation of CL is much friendlier for development than a compiled one? In a compiled one you need to recompile all forms t...
- Sun Sep 20, 2009 7:47 am
- Forum: Common Lisp
- Topic: gensym question
- Replies: 3
- Views: 6901
Re: gensym question
Cool, thanks for your clear replies. Now I understand the issue correctly.
- Fri Sep 18, 2009 7:19 am
- Forum: Common Lisp
- Topic: gensym question
- Replies: 3
- Views: 6901
gensym question
Hi all, I'm learning Lisp by reading Practical Common Lisp. I have a question regarding gensym. The book presents on chapter 9 the macro with-gensyms: (defmacro with-gensyms ((&rest names) &body body) `(let ,(mapcar (lambda (x) `(,x (gensym))) names) ,@body)) It's fine. I understand how it w...