Search Results

8
votes

Using Vim for Lisp development

Limp aims to be a fully featured Common Lisp IDE for Vim. It defaults to SBCL, but can be changed to support most other implementations by replacing "sbcl" for your favourite lisp, in the file /usr …
34
votes

Practical example of Lisp’s flexibility?

I like macros. Here's code to stuff away attributes for people from LDAP. I just happened to have that code lying around and fiigured it'd be useful for others. Some people are con …
9
votes

Practical example of Lisp’s flexibility?

I like CLOS and multimethods. Most, if not all, object-oriented programming languages have the basic notions of classes and methods. The following snippet in Python defines the classes Pee …
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. …
13
votes

When to use ‘quote in Lisp

Short answer Bypass the default evaluation rules and do not evaluate the expression (symbol or s-exp), passing it along to the function exactly as typed. L …
4
votes

Lisp+PHP ?

You would most likely not want to write code in PHP once you've started developing in Lisp. (New capitalization since circa 80s, by the way) Hunchentoot is a popular server that gives you t …
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 …
1
vote

Does Common Lisp have a something like java’s Set Interface/implementing classes?

Easily solvable using a hash table. (let ((h (make-hash-table :test 'equalp))) ; if you're storing symbols (loop for i from 0 upto 20 do (setf (gethash i h) (format nil "V …