Live data from Hacker News

A book on algorithmic programming in Lisp

leanpub.com

1–10 of 18 posts

Re: A book on algorithmic programming in Lisp

#5
Thank you for this book!

Lisp is great. It's so much fun writing Lisp. Coding Lisp with Emacs/Slime is almost an enlightening experience.

However, I never quite got over the frustration that writing the same thing in C++ gives factor two, three or whatever speedup. There is not much that can be done about this, I'm afraid. It's a tragedy.

Re: A book on algorithmic programming in Lisp

#6

Is there consensus on the most common and advisable tooling setup for newcomers in Common Lisp?

Slime running on the Emacs of your choice would be a good start - as a Lisp implementation I would recommend SBCL, which is free and has an amazing compiler compiling to native code.

Alternatively, you could try the free version of Lispworks.

Re: A book on algorithmic programming in Lisp

#7

Is there consensus on the most common and advisable tooling setup for newcomers in Common Lisp?

If you don't want the additional learning curve of Emacs and Slime, the author recommends just using sbcl and rlwrap (which makes programming in a terminal nicer).

Re: A book on algorithmic programming in Lisp

#10

Thank you for this book! Lisp is great. It's so much fun writing Lisp. Coding Lisp with Emacs/Slime is almost an enlightening experience. However, I never quite got over the frustration that writing the same thing in C++ gives factor two, three or whatever speedup. There is not much that can be done about this, I'm afraid. It's a tragedy.

It depends on what you code and how. I hope the book explains some of the approaches and describes the tools that can be used to reduce that difference and avoid a tragedy :)
Post reply on HN