1
0
Fork 0

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

Dieser Commit ist enthalten in:
Danila Fedorin 2020-03-25 17:40:40 -07:00
Ursprung c53a8ba68e
Commit 49cf8e3e08
2 geänderte Dateien mit 3 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -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" >}})

Datei anzeigen

@ -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" >}}).