From c54bfd246ca422337bfc7a92d5b827a762bd4259 Mon Sep 17 00:00:00 2001 From: Stephen De Gabrielle Date: Sun, 23 Aug 2020 22:01:14 +0100 Subject: [PATCH] add reference to macro debugger and syntax/parse --- pkgs/racket-doc/scribblings/guide/macros.scrbl | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/racket-doc/scribblings/guide/macros.scrbl b/pkgs/racket-doc/scribblings/guide/macros.scrbl index 9c6d1d856a..c6acd9836d 100644 --- a/pkgs/racket-doc/scribblings/guide/macros.scrbl +++ b/pkgs/racket-doc/scribblings/guide/macros.scrbl @@ -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 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[] @;------------------------------------------------------------------------