commit 7bdcdc9b6f36ebd2ebdc1501518f4213fc3c39db
parent a2fc5a4dbaeb00764f27b38cbc622c10ad4ffbf9
Author: Greg Hendershott <greghendershott@gmail.com>
Date: Fri, 26 Oct 2012 13:13:05 -0400
Tweak "this is not run time".
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/main.rkt b/main.rkt
@@ -198,7 +198,7 @@ calls our function with the old syntax, and we return the new syntax,
which is used to evaluate and run our program.
-@subsection{What's the input, Kenneth?}
+@subsection{What's the input?}
Our examples so far ignored the input syntax, and output a fixed
syntax. But usually we want to transform the input to something else.
@@ -291,7 +291,8 @@ compiler, and @italic{that} syntax is evaluated:
@codeblock[#:indent 10]{
(define-syntax (foo stx)
- (make-pipe)) ;This is not run time.
+ (make-pipe) ;This is not run time.
+ #'(void))
}
Normal Racket code runs at ... run time. Duh.