From 8b9609fca756ac01eb5ffbf2163616b30fc3ebdb Mon Sep 17 00:00:00 2001 From: Jakub Jankiewicz Date: Mon, 14 Oct 2024 20:39:17 +0200 Subject: [PATCH] (docs) add tip about reading quasiquote in macro article --- docs/docs/scheme-intro/macros.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/docs/scheme-intro/macros.md b/docs/docs/scheme-intro/macros.md index 6282cd65..ff7a9096 100644 --- a/docs/docs/scheme-intro/macros.md +++ b/docs/docs/scheme-intro/macros.md @@ -85,6 +85,12 @@ Macros can be nested, so one expression can expand into something you don't expe you have a function called `macroexpand-1` that should expand macro one time. Which in turn should expand just your macro. +:::tip + +Before you read the next section, it's recommended to read about [quasiquote syntax](/docs/scheme-intro/data-types#quasiquote) first. + +::: + ### New Control Flow Constructs With macros, you can define new control flow (e.g. like `if` statements). Here is an example of