![alt text][1]

Personally, [Structure and Interpretation of Computer Programs](http://www.amazon.com/Structure-Interpretation-Computer-Programs-Engineering/dp/0262510871) is by far 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 in you a passion for writing beautiful programs. Moreover, it will teach you to recognize and appreciate that very beauty. It will leave you with a state of awe and an unquenchable thirst to learn more. **Other books may make you a better programmer; this book will make you a programmer**.

And in the meanwhile, you will learn a thing or two about functional programming (side effects will be introduced only in [chapter three](http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-19.html)), [lazy evaluation](http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-24.html#%_sec_3.5.1), metaprogramming (well, [metalinguistic abstraction](http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-25.html)), [virtual machines](http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-30.html), [interpreters](http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-34.html), and [compilers](http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-35.html).

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.** The book is, after all, 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 - and you should), but the reward is well worth the price.

Still not convinced? Read the [Foreword](http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-5.html) or the [Preface to the First Edition](http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-7.html). 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"