Which language would you use for the self-study of SICP? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T14:00:44Zhttp://stackoverflow.com/feeds/question/239019http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp13Which language would you use for the self-study of SICP?Alan2008-10-27T03:41:28Z2009-05-08T08:43:31Z
<p>I've caught the bug to learn functional programming for real. So my
next self-study project is to work through the <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">Structure and
Interpretation of Computer Programs</a>. Unfortunately, I've never
learned Lisp, as I was not a CS major in college. </p>
<p>While SICP does not emphasize the tools for programming, doing the
exercises entails picking a Lisp-like language to use. It seems like
some implementation of <a href="http://plt-scheme.org/" rel="nofollow">Scheme</a> would be the path of least
resistance. On the other hand, I hear of others who have used <a href="http://gigamonkeys.com/book/" rel="nofollow">Common
Lisp</a> and <a href="http://clojure.org" rel="nofollow">Clojure</a>. It seems to me that Common Lisp or Clojure would be
more likely to be used in production code, and therefore slightly
better for my resume. BTW, I fully get the argument that learning a
language is worthwhile for its own sake, but learning a language that
helps my resume is still a benefit. I'm a capitalist and an academic
about my learning.</p>
<p>If you had to self-study SICP, which language would you pick and why?
Ideally, I would like to use a language that can run on the JVM.
I can certainly work with a language where REPL works with bash
and emacs.</p>
<p>ADDITION: have any of you tried reading SICP without using Scheme? If so, what was your experience like?</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/239038#23903823Answer by Glomek for Which language would you use for the self-study of SICP?Glomek2008-10-27T03:53:40Z2008-10-27T03:53:40Z<p>Use Scheme. It is one of the simplest and easiest languages in existence, and you will spend very little time learning enough of it to understand SICP. Once you understand SICP, you will see how the concepts apply in any language.</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/239053#2390531Answer by Kyle Cronin for Which language would you use for the self-study of SICP?Kyle Cronin2008-10-27T04:03:44Z2008-10-27T04:03:44Z<p>The code in the book is Scheme so you'll have to read it anyways - you might as well write it. You might even like it!</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/239057#23905715Answer by Claudiu for Which language would you use for the self-study of SICP?Claudiu2008-10-27T04:08:25Z2008-10-27T04:08:25Z<p>Use <b>DrScheme</b>. As others have said, Scheme is a simple language, and DrScheme is a great environment to use it in which has a lot of support and mediocre-to-good documentation.</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/239099#2390991Answer by grettke for Which language would you use for the self-study of SICP?grettke2008-10-27T04:46:47Z2008-10-27T04:46:47Z<blockquote>
<p>I've caught the bug to learn functional programming for real.</p>
</blockquote>
<p><strong>From what I've heard</strong>, SICP is about a lot more than just functional programming.</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/239101#239101-1Answer by grettke for Which language would you use for the self-study of SICP?grettke2008-10-27T04:48:14Z2008-10-27T04:48:14Z<blockquote>
<p>but learning a language that helps my resume is still a benefit.</p>
</blockquote>
<p>You should try using VB6 or COBOL, then, as there is a <strong>lot</strong> of billing work out there for it.</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/239110#2391101Answer by grettke for Which language would you use for the self-study of SICP?grettke2008-10-27T04:52:08Z2008-10-27T04:52:08Z<p><strong>Caveat: I have not read the whole book</strong></p>
<p>Since the examples rely on closures and continuations, you would be better served by using a language with both of those features, otherwise you would need to implement them yourself.</p>
<p>For example, writing a metacircular evaluator in Scheme leverages the fact that Scheme provides closures and continuations.</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/239112#2391121Answer by grettke for Which language would you use for the self-study of SICP?grettke2008-10-27T04:53:31Z2008-10-27T04:53:31Z<blockquote>
<p>I hear of others who have used Common Lisp and Clojure.</p>
</blockquote>
<p>You should use whatever language most motivates you, but 99% of folks working through SICP are going to use Scheme.</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/239113#2391130Answer by Keith Nicholas for Which language would you use for the self-study of SICP?Keith Nicholas2008-10-27T04:55:40Z2008-10-27T04:55:40Z<p>I used lua when I had a look at sicp</p>
<p>works out pretty well</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/239120#2391202Answer by J G for Which language would you use for the self-study of SICP?J G2008-10-27T04:59:33Z2008-10-27T04:59:33Z<p>To get real value out of the book you'll have to use Scheme. Which implementation of scheme depends on your current environment:</p>
<p>Windows - Dr Scheme (PLT Scheme) - <a href="http://download.plt-scheme.org/" rel="nofollow">http://download.plt-scheme.org/</a>
Linux - If this is a remote account - you may consider MZScheme (PLTScheme) (<a href="http://download.plt-scheme.org/" rel="nofollow">http://download.plt-scheme.org/</a>) otherwise you'll want to use Dr Scheme if this is a local instance of Linux. </p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/239221#2392211Answer by J. Pablo Fernández for Which language would you use for the self-study of SICP?J. Pablo Fernández2008-10-27T06:42:33Z2008-10-27T06:42:33Z<p>I think Clojure fits what you want to do just perfectly. It's much more functional than Scheme because the data structures are immutable and it can be very useful as it runs on the JVM. But, be aware that you'll end up learning Scheme anyway to be able to understand the code in the book.</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/239672#2396721Answer by Drew R. for Which language would you use for the self-study of SICP?Drew R.2008-10-27T12:07:21Z2008-10-27T12:07:21Z<p>I agree that you should just use Scheme. However, if you really have the itch to use Common Lisp or Clojure, I'd pick the latter. Scheme and Clojure are both Lisp-1s, so the code in the book will be more congruent between the two (except for tail calls, but if you understand how to compensate you'll be fine). Common Lisp is a Lisp-2 and will probably obscure the beauty of what SICP is trying to teach you.</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/239690#2396900Answer by Dev er dev for Which language would you use for the self-study of SICP?Dev er dev2008-10-27T12:17:29Z2008-10-27T12:17:29Z<p>Use anything but scheme.</p>
<p>While using something else then scheme, you will be encouraged to think more, and avoid temptation to just retype the examples. It is a good thing.</p>
<p>Of course, it has to be similar enough, in lisp-1 sense, so clojure and arc are good to go.</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/239704#2397046Answer by Drew Noakes for Which language would you use for the self-study of SICP?Drew Noakes2008-10-27T12:24:22Z2008-10-27T12:24:22Z<p>Not a direct answer but I expect this information to be useful for anyone working through SICP. Be sure to have a look at the videos here:</p>
<p><a href="http://swiss.csail.mit.edu/classes/6.001/abelson-sussman-lectures/" rel="nofollow">http://swiss.csail.mit.edu/classes/6.001/abelson-sussman-lectures/</a></p>
<p>There are 20 episodes of an hour each. They were presented by Abelson and Sussman in 1986 for Hewlett Packard employees. I put them on my iPod and watched them while commuting. Fascinating.</p>
<p>Also, the full text of the book is available online at <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">http://mitpress.mit.edu/sicp/</a></p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/242115#2421150Answer by Jonathan Arkell for Which language would you use for the self-study of SICP?Jonathan Arkell2008-10-28T03:00:30Z2008-10-28T03:00:30Z<p>As someone who hires people, I'll tell you that having Scheme on a resume is a good thing. Having Scheme, SML, Ocaml or Haskell on your resume suggests you are a very well rounded programmer, and quite a thinker. </p>
<p>That said, if you are trying for functional programming, why not Haskell instead? Scheme is multiparadigm, it can be OO, Funcitonal, Streams based, or anything else under the sun. This makes it awesome to try out new programming styles and paradigms, but if your goal is strictly functional, it can be a problem. (You will end up writing non functional code and not realizing it.)</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/242157#2421570Answer by inglesp for Which language would you use for the self-study of SICP?inglesp2008-10-28T03:28:38Z2008-10-28T03:28:38Z<p>I worked through (most) of it earlier this year, and used Common Lisp, simply because I didn't have Scheme available (don't ask).</p>
<p>As has already been noted, Scheme is a Lisp-1 language whereas Common Lisp is a Lisp-2. There are enough differences between the languages to mean that you have think carefully about translating the code in the book, so it forced me to really get to grips with the material.</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp/838848#8388480Answer by weima for Which language would you use for the self-study of SICP?weima2009-05-08T08:43:31Z2009-05-08T08:43:31Z<p>I have used scheme for my self-study. The best way to learn from SICP is to do all the exercises relegiously.</p>
<p>I have used <a href="http://www.gnu.org/software/guile/guile.html" rel="nofollow">Gnu guile</a> for scheme.</p>