Add links to the article everywhere else
continuous-integration/drone/push Build is passing Dettagli

This commit is contained in:
Danila Fedorin 2020-03-25 17:40:40 -07:00
parent c53a8ba68e
commit 49cf8e3e08
2 ha cambiato i file con 3 aggiunte e 2 eliminazioni

Vedi File

@ -141,3 +141,4 @@ Here are the posts that I've written so far for this series:
* [Runtime]({{< relref "07_compiler_runtime.md" >}})
* [LLVM]({{< relref "08_compiler_llvm.md" >}})
* [Garbage Collection]({{< relref "09_compiler_garbage_collection.md" >}})
* [Polymorphism]({{< relref "10_compiler_polymorphism.md" >}})

Vedi File

@ -554,5 +554,5 @@ and can benefit from `let/in` expressions and __lambda functions__.
Furthermore, our language is currently monomorphic, and would
be much better with __polymorphism__. Finally, to make our language
capable of more-than-trivial work, we may want to implement
__Input/Output__ and __strings__. I hope to see you in future posts,
where we will implement these features!
__Input/Output__ and __strings__. We tackle the largest of these
features, polymorphism, in [Part 10]({{< relref "10_compiler_polymorphism.md" >}}).