Posts tagged macros

Parsing Text the Racket Way

:: racket, macros, dsls, tutorials

By: Mike Delmonaco

Have you ever needed to process some raw text and extract only parts of it? Most of the time, you can get by with some nasty regular expressions with groups, but sometimes the pattern that you’re trying to process is too complicated for regular expressions. That’s what parsers are good for, and they’re also the first step in an interpreter/compiler!

In this post, we’ll discover parsers and create a domain-specific language for creating parsers in Racket.

Understanding and Implementing a Macro System

:: racket, tutorials, programming-languages, understand-and-implement, macros

By: Mike Delmonaco

Macros are a powerful tool that allow programmers to extend the syntax of a language. In a language with macros, features like for-loops, while-loops, and pattern matching can be implemented as a library by users of the langauge! In this post, we’ll discover what macros are, how and why to use them, and how to implement a tiny language with a simple macro system.

For this post, you’ll need some familiarity with Racket, but no familiarity with macros is required. If you don’t know what something is, click on the variable name in the code and you’ll be taken to its documentation.