replace missing line

This commit is contained in:
Matthew Butterick 2016-09-26 08:03:18 -07:00
parent d4ac779fa9
commit 474dddf9b3

View File

@ -122,6 +122,7 @@ What happens if we pass our @racket[parse] function a bigger source of tokens?
(token 'WORD str)])))
@code:comment{For example:}
(define token-source (tokenize "(welcome (to (((brag)) ())))"))
(define v (parse token-source))
(syntax->datum v)
]