Link compiler posts together

This commit is contained in:
Danila Fedorin 2019-10-10 18:15:37 -07:00
parent b27dc19e57
commit 1ffc43af98
2 changed files with 2 additions and 1 deletions

View File

@ -138,3 +138,4 @@ Here are the posts that I've written so far for this series:
* [Typechecking]({{< relref "03_compiler_typechecking.md" >}})
* [Small Improvements]({{< relref "04_compiler_improvements.md" >}})
* [Execution]({{< relref "05_compiler_execution.md" >}})
* [Compilation]({{< relref "06_compiler_semantics.md" >}})

View File

@ -592,4 +592,4 @@ tell us what to do with our `ast` structs. We'll need to define
rules to translate trees into these instructions, and I've already
alluded to this when we went over `double 326`.
However, this has already gotten pretty long,
so we'll do it in the next post: (link me!)
so we'll do it in the next post: [Part 6 - Compilation]({{< relref "06_compiler_semantics.md" >}}).