![alt text][1]

Personally, Structure and Interpretation of Computer Programs is the most influential programming book I have ever read.

Some classics like [Code Complete](http://www.amazon.com/Complete-Microsoft-Programming-Steve-McConnell/dp/1556154844), [Refactoring](http://www.amazon.com/Refactoring-Improving-Existing-Addison-Wesley-Technology/dp/0201485672) and [Design Patterns](http://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/0201633612) teach you the effective working habits and the painstaking details of the trade. Others, like [Peopleware](http://www.amazon.com/Peopleware-Productive-Projects-Teams-Second/dp/0932633439), [Psychology of Computer Programming](http://www.amazon.com/Psychology-Computer-Programming-Silver-Anniversary/dp/0932633420) and [The Mythical Man-Month](http://www.amazon.com/Mythical-Man-Month-Software-Engineering-Anniversary/dp/0201835959) delve into the psychosocial aspects of software development. [Numerous](http://www.amazon.com/Art-Computer-Programming-Volumes-Boxed/dp/0201485419) [others](http://www.amazon.com/Introduction-Algorithms-Thomas-H-Cormen/dp/0262032937) deal with algoritms. These books all have their place.

SICP, however, is in a different league. It is a book that **will enlighten you**. It will evoke a passion for writing beautiful programs. It will inspire you to learn more. It will lead you to appreciate programming as a means of expression and not just as a tool for "pushing heavy blocks into place" (paraphrasing Alan Perlis in the [foreword](http://mitpress.mit.edu/sicp/full-text/sicp/book/node1.html)).

And in the meanwhile, you will learn a thing or two about functional programming, metaprogramming, interpreters, virtual machines and compilers.

As for SICP's suitability for beginners, I'll have to disagree with Cristian. Personally, I probably would not have appreciated the book in full without having some programming experience under my belt, but **I would definitely recommend it for a beginner.** After all, the book is originally written for and still used as the courseware for the famous [6.001](http://sicp.csail.mit.edu/), the introductory programming course at MIT. It may require an intellectual effort (especially if you do the exercises), but the reward is worth the price.

The full text is [freely available on the web](http://mitpress.mit.edu/sicp/full-text/book/book.html).

  [1]: http://users.tkk.fi/~jsykari/files/sicp.jpg "Structure and Interpretation of Computer Programs"