From 7bdcdc9b6f36ebd2ebdc1501518f4213fc3c39db Mon Sep 17 00:00:00 2001 From: Greg Hendershott Date: Fri, 26 Oct 2012 13:13:05 -0400 Subject: [PATCH] Tweak "this is not run time". --- main.rkt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.rkt b/main.rkt index a2dcbd6..9848f8a 100644 --- 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.