Also, even if I can use Common Lisp, should I? Is Scheme better?
|
|
|
|
|
|
|
Do you already know some Common Lisp? I assume that is what you mean by 'Lisp'. In that case you might want to use it instead of Scheme. If you don't know either, and you are working through SICP solely for the learning experience, then probably you are better off with Scheme. It has much better support for new learners, and you won't have to translate from Scheme to Common Lisp. There are differences; specifically, SICP's highly functional style is wordier in Common Lisp because you have to quote functions when passing them around and use However, if you want to use Common Lisp, you can try using Eli Bendersky's Common Lisp translations of the SICP code. |
||
|
|
|
|
You have several answers here, but none is really comprehensive (and I'm not talking about having enough details or being long enough). First of all, the bottom line: you should not use Common Lisp if you want to have a good experience with SICP. If you don't know much Common Lisp, then just take it as that. (Obviously you can disregard this advice as anything else, some people only learn the hard way.) If you already know Common Lisp, then you might pull it off, but at considerable effort, and at a considerable damage to your overall learning experience. There are some fundamental issues that separate Common Lisp and Scheme, which make trying to use the former with SICP a pretty bad idea. In fact, if you have the knowledge level to make it work, then you're likely above the level of SICP anyway. I'm not saying that it's not possible -- it is of course possible to implement the whole book in Common Lisp (for example, see Bendersky's pages) just as you can do so in C or Perl or whatever. It's just going to harder with languages that are further apart from Scheme. (For example, ML is likely to be easier to use than Common Lisp, even when its syntax is very different.) Here are some of these major issues, in increasing order of importance. (I'm not saying that this list is exhaustive in any way, I'm sure that there are a whole bunch of additional issues that I'm omitting here.)
I'll expand now on each of these points: The first point is the most technical. In Common Lisp, The second point is a much deeper one, and possibly one that will lead to completely incomprehensible behavior of your code. The thing is that in Common Lisp, function arguments are lexically scoped, but variables that are declared with The third point was also discussed in some of the previous comments. In fact, Rainer had a pretty good summary of the different options that you have, but he didn't explain just how hard it can make things. The thing is that proper tail-call-optimization (TCO) is one of the fundamental concepts in Scheme. It is important enough that it is a language feature rather than merely an optimization. A typical loop in Scheme is expressed as a tail-calling function (for example, Finally, my last point is not too hard to overcome, but it is conceptually the most important one. In Scheme, you have a uniform rule: identifiers have a value, which is determined lexically -- and that's it. It's a very simple language. In Common Lisp, in addition to the historical baggage of sometimes using dynamic scope and sometimes using lexical scope, you have symbols that have two different value -- there's the function value that is used whenever a variable appears at the head of an expression, and there is a different value that is used otherwise. For example, in Finally, I'll note that much of the above is very good flamewar material: throw any of these issues into a public Lisp or Scheme forum (in particular |
||
|
|
|
|
You can use Common Lisp for learning with SICP without much problems. The Scheme subset that is used in the book is not very sophisticated. SICP does not use macros and it uses no continuations. There are DELAY and FORCE, which can be written in Common Lisp in a few lines. Also for a beginner using (function foo) and (funcall foo 1 2 3) is actually better (IMHO !), because the code gets clearer when learning the functional programming parts. You can see where variables and lambda functions are being called/passed. There is only one big area where using Common Lisp has a drawback: tail call optimization (TCO). Common Lisp does not support that in its standard. There are three ways to live with that:
Personally I would recommend 3., but 2. can work too. Common Lisp has excellent and easy to use development environments (LispWorks, Allegro CL, Clozure CL on a Mac, MCL, ...) and a few that are not that easy to use, but powerful too (Emacs/SLIME, ...). Sometimes it might also helpful to write one or two macros to make code look a bit more like Scheme. For example you could have a DEFINE macro in Common Lisp. But that's not strictly necessary and I would not recommend it, unless it should save some time in translating code. For the more advanced users, there is an old Scheme implementation (called Pseudo Scheme), that should run most of the code in SICP. My recommendation: if you want to go the extra mile and use Common Lisp, do it. |
||
|
|
|
|
Edit: Nathan Sanders' comment is correct. It's clearly been a while since I last read the book, but I just checked and it does not use Whatever you use needs to implement continuations, which SICP uses a lot. Not even all Scheme interpreters implement them, and I'm not aware of any Common Lisp that does. |
||||||||||||||||||
|
|
|
They are similar but not the same. I believe If you go with Scheme it would be easier. |
||
|
|
