**The Seasoned Schemer**, a book on recursive programming by Daniel P. Friedman and Matthias Felleisen. It's the continuation of **The Little Schemer**
The Seasoned Schemer is a book by Daniel P. Friedman and Matthias Felleisen, it's the continuation of The Little Schemer, introducing more advanced concepts of recursive programming to an audience which may have no prior experience with programming or mathematics. All the examples are in the Scheme language but it is not intended as an introduction to Scheme, and only uses that subset of the language necessary to implement solutions to the various tasks set in the book. Some of the new subjects introduced include: let
, continuations and mutable state.