#4 in Lisp programming books
Use arrows to jump to the previous/next product

Reddit mentions of Essential Lisp

Sentiment score: 1
Reddit mentions: 1

We found 1 Reddit mentions of Essential Lisp. Here are the top ones.

Essential Lisp
Buying options
View on Amazon.com
or
Specs:
Height9.13 Inches
Length0.62 Inches
Number of items1
Weight1.25 Pounds
Width7.41 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 1 comment on Essential Lisp:

u/ninejaguar ยท 2 pointsr/lisp

Something to consider...

>"Fundamentals are the psychological entry to a subject, and foundations are the logical entry. Fundamentals must be easy for the novice, while foundations can be hard for the expert. Learning a subject is movement from fundamentals to foundations."
>
>- Bruce Mills, Practical Formal Software Engineering

One sure method to begin the journey from fundamentals to foundations in learning Common Lisp is through immediate correction/feedback using the interactive "LispTutor Jr" online by carefully reading the lessons (don't skip any AND do take notes!) and doing the strictly guided / checked exercises, and then completing all of the exercises / projects in the "Land of Lisp" book.

The primary advantages are that both are used at university and that LispTutor has been proven to work.

>The original LispTutor was developed at Carnegie Mellon University by Reiser, Anderson, Corbett, Farrell and others. Lisptutor Jr is a simplified version of the system, but it is still used by many people interested in learning the classic language for Artificial Intelligence: LISP.
>
>About LispTutor Jr

As quoted above, the original LispTutor interactive training system was created at Carnegie Mellon (home of CMUCL from which SBCL is derived). It has been used there, and at other schools, to teach Common Lisp. Its contents are derived from the insightful "Essential LISP" book that was the result of AI research in determining what it takes to teach students who've never been exposed to Lisp how to program in it competently.

The special focus of the "Essential Lisp" book and the LispTutor is Iteration and Recursion, since those are often the most difficult topics for students to understand and internalize well. In fact, they cover things that no other Lisp book I've seen does, such as providing principles to help determine what the three primary variables in a particular Iterative structure should be initialized to. That alone helps reduce student error by avoiding over iterating or under iterating.