Tagged Questions

ANSI Common Lisp, the programmable programming language.

learn more… | top users | synonyms

62
votes
5answers
13k views

Please explain some of Paul Graham's points on Lisp

I need some help understanding some of the points from Paul Graham's article http://www.paulgraham.com/diff.html A new concept of variables. In Lisp, all variables are effectively pointers. Values ...
54
votes
23answers
9k views

What's the best way to learn LISP?

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 diferent ...
43
votes
12answers
14k views

Common Lisp or Scheme? [closed]

Which would you recommend learning, CL or Scheme? What are the pros and cons of each, compared to each other?
31
votes
7answers
2k views

Examples of excellent Common Lisp code?

I've learned enough Common Lisp to be able to muddle my way through writing an application. I've read Seibel's Practical Common Lisp What libraries or programs should I be reading to understand the ...
31
votes
13answers
16k views

Best Common Lisp IDE [closed]

I've used Slime within Emacs as my primary development environment for Common Lisp (or Aquamacs on OS X), but are there other compelling choices out there? I've heard about Lispworks, but is that [or ...
29
votes
17answers
19k views

What's a good Common Lisp implementation for Windows?

What's your favourite? See also this related question.
28
votes
3answers
2k 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: ...
28
votes
7answers
4k 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 ...
26
votes
5answers
2k 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?
25
votes
5answers
8k views

Lisp Executable

I've just started learning Lisp and I can't figure out how to compile and link lisp code to an executable. Im using clisp and "clisp -c" produces two files .fas and .lib, what do I do next to get an ...
24
votes
12answers
5k 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? ...
23
votes
3answers
973 views

Why did father of Clojure say that Scheme's true/false are broken?

In this video, Rich Hickey introduced Clojure for Lisp programmers. At time 01:10:42, he talked about nil/false/end-of-sequence/'() among Clojure/Common Lisp/Scheme/Java. He said: "Scheme has true ...
23
votes
4answers
4k 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?
22
votes
5answers
2k views

Can I use Common Lisp for SICP or is Scheme the only option?

Also, even if I can use Common Lisp, should I? Is Scheme better?
22
votes
7answers
4k views

Are there any Common Lisp implementations for .Net?

Related to my other CL question.
21
votes
5answers
1k views

How many primitives does it take to build a LISP machine? Ten, seven or five?

On this site they say there are 10 LISP primitives. The primitives are: atom, quote, eq, car, cdr, cons, cond, lambda, label, apply. http://hyperpolyglot.wikidot.com/lisp#ten-primitives Stevey ...
20
votes
13answers
1k views

Would Lisp be extremely difficult for a new(ish) programmer to learn?

I've got a little experience with Python (enough to where I can do if/else/elif and some random number generation), but I've always had a weird fascination with the Lisp languages. I downloaded some ...
20
votes
6answers
790 views

What is the difference between 1 and '1 in Lisp?

I had never really thought about whether a symbol could be a number in Lisp, so I played around with it today: > '1 1 > (+ '1 '1) 2 > (+ '1 1) 2 > (define a '1) > (+ a 1) 2 The above ...
19
votes
17answers
5k views

Why not port Linux kernel to Common Lisp?

Conventional wisdom states that OS kernels must be written in C in order to achieve the necessary levels of performance. This has been the justification for not using more expressive high level ...
18
votes
8answers
949 views

How to go about learning Common Lisp and Emacs Lisp?

The last few months I've been using Emacs extensively as my main development environment and I've now come to a point at which I'd like to learn it's own Emacs Lisp to write my own little stuff for ...
17
votes
2answers
812 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 ...
17
votes
3answers
8k views

Difference between “set”, “setq”, and “setf” in Common Lisp?

What is the difference between "set", "setq", and "setf" in Common Lisp?
15
votes
3answers
584 views

What are the advantages of scheme macros?

Why would anyone prefer Scheme macros over Common Lisp macros (and I genuinely want to know too, I'm not trying to be a troll)? My experience as a Lisp newb is that Common Lisp style macros are much ...
15
votes
15answers
2k views

What makes you want to learn Common Lisp? What do you want from it?

I'm working on a toolkit (sort of a live-CD Lisp-in-a-Box) for people new to Common Lisp, and I want to make sure it is broadly satisfying. What is attractive to you about Lisp? What do/did/would ...
14
votes
3answers
282 views

Is there a lint for Common Lisp or Chicken Scheme?

Something akin to C's splint, Haskell's HLint, Perl's B::Lint, etc.?
14
votes
4answers
737 views

Clojure vs other Lisps [closed]

The intent of my question is not to start a flame war, but rather to determine in what circumstances each language is "the best tool for the job." I have read several books on Clojure (Programming ...
14
votes
3answers
384 views

What does #+#. mean in lisp?

It is almost impossible to google, hence my understanding is limited to contextual clues from reading through the slime source code: perhaps it is part of the object system in common lisp? Something ...
14
votes
2answers
429 views

Does “The whole language always available” hold in case of Clojure?

Ninth bullet point in Paul Graham's What Made Lisp Different says, 9. The whole language always available. There is no real distinction between read-time, compile-time, and runtime. You can ...
14
votes
1answer
1k views

Embedded language: Lua vs Common Lisp (ECL)

Does anybody here have a experience with Common Lisp as a embedded language (using ECL)? If so, how good is ECL compared to Lua?
14
votes
2answers
358 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 ...
13
votes
2answers
1k views

Where to learn how to practically use Common Lisp

I am a C++ programmer trying to learn Common Lisp. I have looked at some books like Land of Lisp and read numerous online articles about the various virtues of Lisp. However, I need some advice. ...
13
votes
6answers
785 views

Why code-as-data?

What is code-as-data? I've heard it's superior to "code-as-ascii-characters" but why? I personally find the code-as-data philosophy a bit confusing actually. I've dabbled in Scheme, but I never ...
13
votes
4answers
904 views

CLOS for Clojure?

Does there exist anything like CLOS (Common Lisp Object System) for Clojure? If there isn't, how hard would it be to write one? Thanks in advance. -- Eric Grindt
13
votes
2answers
446 views

CLSQL and MYSQL on OS X

I'm working on OS X 10.6.4. I've been using clbuild to install supporting libraries for SBCL (including clsql), and I do all my work through Aquamacs. I installed MySQL using the excellent ...
13
votes
7answers
375 views

What is the difference between a variable and a symbol in LISP?

In terms of scope? Actual implementation in memory? The syntax? For eg, if (let a 1) Is 'a' a variable or a symbol?
13
votes
11answers
1k views

Scheme or Common Lisp?

I am an intermediate programmer, and have decided to learn either common lisp or scheme. My question is simple, which one would you choose? I don't care much for the difficulty of the syntax, just the ...
13
votes
3answers
863 views

Why is consing in Lisp slow?

I read in the book 'On Lisp' that one should avoid excessive use of cons in the body of expanded macros. Why is cons considered to be an inefficient operation? Does Lisp not do structure sharing ...
13
votes
9answers
5k views

How do the various ANSI CL implementations differ?

When I started learning CL from Practical Common Lisp, as is preached in the book, I started off with Allegro CL compiler. I stopped using it, since its commerical, yet free bit didn't impress me. It ...
12
votes
1answer
220 views

Is a “transparent” macrolet possible?

I'd like to write a Clojure with-test-tags macro that wraps a bunch of forms, and adds some metadata to the name of each deftest form - specifically, add some stuff to a :tags key, so that I can play ...
12
votes
7answers
760 views

Lisp Community - Quality tutorials/resources

As many other people interested in learning Lisp, I feel the resources available are not the best for beginners and eventually prevent many new people from learning it. Do you feel it could be created ...
12
votes
7answers
717 views

Separate Namespaces for Functions and Variables in Common Lisp versus Scheme

Scheme uses a single namespace for all variables, regardless of whether they are bound to functions or other types of values. Common Lisp separates the two, such that the identifier "hello" may refer ...
12
votes
6answers
4k views

Best web framework in Common-lisp?

What is the best common-lisp web framework available? I'm looking for something that's suitable for developing commercial web applications and capable of handling high traffic sites similar to Stack ...
11
votes
3answers
284 views

Tuple Unpacking Similar to Python, but in Common Lisp

Is there a way to assign the values of a list to a list of symbols in Common Lisp similar to the way that you can assign the values of tuple to variables in Python? x, y, z = (1, 2, 3) Something ...
11
votes
3answers
1k views

emacs setup for both clojure and common lisp with slime-fancy (slime-autodoc)

I set up emacs for both clojure and common lisp, but I want also (slime-setup '(slime-fancy)) for common lisp. If I add that line to init.el, clojure won't work: it gives me repl, but it hangs after I ...
11
votes
2answers
254 views

What's a good unit test framework for Common Lisp projects?

I need to write a unit test suite for a project I am developing in my spare time. Being a CL newbie I was overwhelmed by the amount of choices for a CL implementation, I spent quite some time to ...
11
votes
2answers
342 views

CLIM tutorial, where?

I am thinking of using McClim for an application, where can I find a tutorial that covers buttons, keyboard/mouse I/O, drawing images, etc. STFW for mcclim tutorial and clim tutorial didn't help much. ...
11
votes
8answers
1k 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 ...
11
votes
6answers
912 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 ...
11
votes
5answers
2k views

Have you read Let Over Lambda?

I have been searching for references of this book, but haven't found much. It seems that it is a pretty advanced book, and I believe SO to be one of the best sites to ask for a little review. The ...
11
votes
3answers
1k 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 ...

1 2 3 4 5 16