Finish compiler series

This commit is contained in:
2020-02-10 19:18:55 -08:00
parent e5d01a4e19
commit e7f0ccfa16
5 changed files with 573 additions and 15 deletions

View File

@@ -574,5 +574,6 @@ In the next several posts, we will improve
our compiler to properly free unused memory
usign a __garbage collector__, implement
lambda functions using __lambda lifting__,
and use our Alloc instruction to implement `let/in` expressions. See
you there!
and use our Alloc instruction to implement `let/in` expressions.
We get started on the first of these tasks in
[Part 9 - Garbage Collection]({{< relref "09_compiler_garbage_collection.md" >}}).