12
votes
The Clojure (or Lisp) Equivalent of a Compound Boolean Test
In Common Lisp, the following is also a common idiom:
(when (and (= a something) (= b another))
(foo))
Compare this to Doug Currie's answer using (and ... …
15
votes
Is it feasible to do (serious) web development in Lisp?
Yes, web development is one of Common Lisp's strengths today.
As a web server, use Hunchentoot, formerly known as tbnl, by …
1
vote
How to include “port” package under CLISP in Ubuntu
It is unfortunate that the cl-cookbook still refers to PORT from CLOCC. I recommend against PORT in particular and CLOCC in general.
The good news is newer, better socket libraries exist, …
3
votes
How can I reuse a gethash lookup in Common Lisp?
Don't do anything special, because the implementation does it for you.
Of course, this approach is implementation-specific, and hash table performance varies between implementations. (But …
2
votes
Setting up a working Common Lisp environment for the aspiring Lisp newbie
There are different ways of setting up a Lisp environment, from manual approaches to out-of-the-box installers.
The following answer is for …
1
vote
How do I iterate through a directory in Common Lisp?
The modern Common Lisp library implementing directory listing is IOLIB.
It works like this:
CL-USER> (i …
