Search Results

4
votes

What’s a good Common Lisp implementation for Windows?

LispWorks Free for personal use, slightly crippled in that version (most notably you can only use the I …
5
votes

Are there any Common Lisp implementations for .Net?

If it's OK to go the other way around, you can access .Net from your favourite Lisp through Edi Weitz' RDNZL. …
0
votes

Replace an item in a list in Common Lisp?

The obvious solution is slow and uses memory, as noted by others. If possible, you should try to defer replacing the element(s) until you need to perform another element-wise operation on the list …