www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 16bbc60944b6c2e300ce6f0d7328862936c70210
parent aecde5d30e8d0000c1f987ac8ea6e6ca05ec30ed
Author: Greg Hendershott <greghendershott@gmail.com>
Date:   Tue, 13 Nov 2012 13:24:11 -0500

Add tag for pattern-matching section

Diffstat:
Mmain.rkt | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/main.rkt b/main.rkt @@ -606,7 +606,7 @@ them available at compile time.} @; ---------------------------------------------------------------------------- @; ---------------------------------------------------------------------------- -@section{Pattern matching: syntax-case and syntax-rules} +@section[#:tag "pattern-matching"]{Pattern matching: syntax-case and syntax-rules} Most useful syntax transformers work by taking some input syntax, and rearranging the pieces into something else. As we saw, this is @@ -1493,8 +1493,8 @@ great. Improving it would require even more error code. (string-append s " snazzy suffix")) ;; User of the function: (misuse 0) -;; I goofed, and understand why! I hear the writer of the function is -;; happier. +;; I goofed, and understand why! I'm happier, and I hear the writer of +;; the function is happier, too. ) This is the best of both worlds.