20
votes
20answers
2k views
What’s the best way to learn LISP?
Hi, I have been programming in Python, PHP, Java and C for a couple or years now, and I just finished reading Hackers and Painters, so I would love to give LISP a try!
I understand its totally …
16
votes
6answers
1k views
What is the closest thing to Slime for Scheme?
I do most of my development in Common Lisp, but there are some moments when I want to switch to Scheme (while reading Lisp in Small Pieces, when I want to play with continuations, or when I want to do …
14
votes
4answers
646 views
Are there any High Level, easy to install GUI libraries for Common Lisp?
Are there any good, cross platform (SBCL and CLISP at the very least) easy to install GUI libraries?
13
votes
2answers
314 views
What Lisp is better at parsing?
I'd like to implement a Lisp interpreter in a Lisp dialect mainly as a learning exercise. The one thing I'm thrown off by is just how many choices there are in this area. Primarily, I'm a bit more …
13
votes
15answers
3k views
What’s a good Common Lisp implementation for Windows?
What's your favourite?
See also this related question.
13
votes
11answers
2k views
Common Lisp or Scheme?
Which would you recommend learning, CL or Scheme? What are the pros and cons of each, compared to eachother?
12
votes
2answers
487 views
Clojure keyword arguments
In Common Lisp you can do this:
(defun foo (bar &key baz quux)
(list bar baz quux))
(foo 1 :quux 3 :baz 2) ; => (1 2 3)
Clojure doesn't have keyword arguments. One alternative is this:
…
11
votes
3answers
814 views
Porting Common Lisp code to Clojure
How practical is it to port a Common Lisp application to Clojure? To be more specific, what features exist in Common Lisp that do not exist in Clojure, and would have to be re-written?
10
votes
8answers
341 views
Lisp as a Scripting Language in a C++ app…
Hey, I've been looking at the possibility of adding a scripting language into my framework and I heard about Lisp and thought I would give it a go. Is there a VM for Lisp like Lua and Python or am I …
10
votes
5answers
578 views
Are there any Common Lisp implementations for .Net?
Related to my other CL question.
9
votes
3answers
390 views
Common Lisp equivalent to C enums
I'm trying to learn some Lisp (Common Lisp) lately, and I wonder if there is a way to give constant numbers a name just like you can do in C via enums.
I don't need the full featureset of enums. In …
8
votes
2answers
99 views
Is there a common lisp package naming convention?
I have created some of my own user packages and have run into a name clash.
In Java, the naming convention is to use your domain name in the package name:
e.g. import com.example.somepackage;.
Are …
8
votes
4answers
262 views
How do I iterate through a directory in Common Lisp?
I'm using OpenMCL on Darwin, and I'd like to do something like:
(loop for f in (directory "somedir")
collect (some-per-file-processing f))
But I can't get directory to return anything other than …
8
votes
5answers
251 views
Variable references in lisp
Another newbie (Common) LISP question:
Basically in most programming languages there's a mean for functions to receive references to variables instead of just values, that is, passing by reference …
8
votes
8answers
707 views
LET versus LET* in Common Lisp
I understand the difference between LET and LET* (parallel versus sequential binding), and as a theoretical matter it makes perfect sense. But is there any case where you've ever actually needed LET? …
