diff --git a/pollen/private/ts.rktd b/pollen/private/ts.rktd index 6a42897..d3f50e0 100644 --- a/pollen/private/ts.rktd +++ b/pollen/private/ts.rktd @@ -1 +1 @@ -1480342815 +1480440813 diff --git a/pollen/scribblings/tutorial-first.scrbl b/pollen/scribblings/tutorial-first.scrbl index c280c41..fd3de3f 100644 --- a/pollen/scribblings/tutorial-first.scrbl +++ b/pollen/scribblings/tutorial-first.scrbl @@ -443,21 +443,17 @@ One caveat: because the preprocessor only deals with text, the Pollen commands y @fileblock["odd-values.html.pp" @codeblock{ #lang pollen - -◊(void) ; this will become an empty string +◊(void)◊; this will become an empty string ◊(string->path "foo") ◊#\C -◊sqrt ◊(sqrt 2) ◊(list 1 2 3 4 5) ◊(map sqrt (list 1 2 3 4 5)) }] @repl-output{ - foo C -# 1.4142135623730951 '(1 2 3 4 5) '(1 1.4142135623730951 1.7320508075688772 2 2.23606797749979)}