doc: link orphan syntax tutorial

This commit is contained in:
Sebastian Ullrich 2022-04-20 18:49:38 +02:00
parent 5f6bbe59ef
commit c354a9f62f
2 changed files with 4 additions and 2 deletions

View file

@ -35,7 +35,9 @@
- [User-defined notation](./notation.md)
- [String Interpolation](./stringinterp.md)
- [Macro Overview](./macro_overview.md)
- [A Guided Example](./syntax_example.md)
- [Examples](./syntax_examples.md)
- [Parenthesized Terms](./syntax_example.md)
- [Arithmetic DSL](./tutorial/metaprogramming-arith.md)
- [Declaring New Types](./decltypes.md)
- [Enumerated Types](./enum.md)
- [Inductive Types](./inductive.md)

View file

@ -1,4 +1,4 @@
## Arithmetic as an embedded domain-specific language
# Arithmetic as an embedded domain-specific language
Let's parse another classic grammar, the grammar of arithmetic expressions with
addition, multiplication, integers, and variables. In the process, we'll learn