Search found 4 matches

by abc
Tue Sep 22, 2009 2:57 pm
Forum: Common Lisp
Topic: Newbie question: Interpreted CL
Replies: 4
Views: 5828

Re: Newbie question: Interpreted CL

Aha.

Thanks!
by abc
Tue Sep 22, 2009 7:40 am
Forum: Common Lisp
Topic: Newbie question: Interpreted CL
Replies: 4
Views: 5828

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...
by abc
Sun Sep 20, 2009 7:47 am
Forum: Common Lisp
Topic: gensym question
Replies: 3
Views: 6047

Re: gensym question

Cool, thanks for your clear replies. Now I understand the issue correctly.
by abc
Fri Sep 18, 2009 7:19 am
Forum: Common Lisp
Topic: gensym question
Replies: 3
Views: 6047

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...