From cc9cdbee92aa6d148a1524ebccbd19d89f90e1d4 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sun, 24 Jan 2010 03:08:23 -0500 Subject: books tweaks --- books/Seasoned Schemer.page | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'books/Seasoned Schemer.page') diff --git a/books/Seasoned Schemer.page b/books/Seasoned Schemer.page index 655c44c..cebbdfc 100644 --- a/books/Seasoned Schemer.page +++ b/books/Seasoned Schemer.page @@ -11,7 +11,7 @@ The Seasoned Schemer :by: Daniel Friedman and Matthias Felleisen :Edition: First (1st) -See also `Scheme `__. This book is a sequel +See also `Scheme `_. This book is a sequel to `The Little Schemer`_; The Reasoned Schemer is a paralel exploration of logical programming. @@ -27,12 +27,12 @@ work done in, but it's kind of like searching for anti-aliasing in digital photos or scanning the edges of a wall for painting mistakes. Sometimes the big picture is the whole point and it's worth putting up with small flaws. -.. _The Little Schemer: /k/books/littleschemer/ +.. _The Little Schemer: Little+Schemer Issues/Omissions -------------------------- -The Y combinator function is never defined in this book, I had to copy it out of -`The Little Schemer`_; +The Y combinator function is never defined in this book, I had to copy it out +of `The Little Schemer`_:: (define Y (lambda (thing) @@ -54,7 +54,7 @@ Also ``eqlist?``:: (else (and (eqlist? (car a) (car b)) (eqlist? (cdr a) (cdr b))))))) MIT/GNU Scheme doesn't seem to have ``letcc`` or ``try``; I stuck with -``call-with-current-continuation``: +``call-with-current-continuation``:: (call-with-current-continuation (lambda (hook) ...) ; is the same as @@ -138,7 +138,7 @@ The Twentieth Commandment function that is equivalent but does not forget. Then, when you use it, remember to forget. -**I love that last sentence!** +*I love that last sentence!* -- cgit v1.2.3