add reference to macro debugger and syntax/parse

This commit is contained in:
Stephen De Gabrielle 2020-08-23 22:01:14 +01:00 committed by Matthias Felleisen
parent fc3097f12d
commit c54bfd246c

View File

@ -19,6 +19,15 @@ This chapter provides an introduction to Racket macros, but see
@hyperlink["http://www.greghendershott.com/fear-of-macros/"]{@italic{Fear of @hyperlink["http://www.greghendershott.com/fear-of-macros/"]{@italic{Fear of
Macros}} for an introduction from a different perspective. Macros}} for an introduction from a different perspective.
Racket includes addional support for macro development:
A @hyperlink["https://docs.racket-lang.org/macro-debugger/index.html"]{@italic{macro
debugger}} to make it easier for experienced programmers
to debug their macros and for novices to study their behavior,
and of macros. And the @hyperlink["https://docs.racket-lang.org/syntax/index.html"]{@italic{syntax/parse
library}} for writing macros and specifying syntax that
automatically validates macro uses and reports syntax
errors.
@local-table-of-contents[] @local-table-of-contents[]
@;------------------------------------------------------------------------ @;------------------------------------------------------------------------