Skip to content

Commit

Permalink
(docs) add tip about reading quasiquote in macro article
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Oct 14, 2024
1 parent aa63e5b commit 8b9609f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/docs/scheme-intro/macros.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8b9609f

Please sign in to comment.