Practical macros in Racket

1 · Shane Mulligan · Nov. 16, 2017, 11 a.m.
Original article Practical macros in Racket and how to work with them This is a copy of Kevin R. Stravers article above, formatted in org-mode with some minor changes. TLDR You can ignore everything except define-syntax-parser if you’re new. In essence it’s a way to define macros in a clean manner. Explanation of syntax: define-syntax-parser An example of define-syntax-parser: Generating C with racket // Bodacious Blog Practical macros in Racket and how to work with them A macro is central i...