Add garbage collection

This commit is contained in:
Charles-Axel Dein 2022-09-28 14:32:42 +02:00
parent 493fa7214a
commit 6c772624d3
No known key found for this signature in database
GPG Key ID: 64C00027F3375D70
1 changed files with 5 additions and 0 deletions

View File

@ -71,6 +71,7 @@
- [Programming languages](#programming-languages)
- [Python](#python)
- [JavaScript](#javascript)
- [Garbage collection](#garbage-collection)
- [Programming paradigm](#programming-paradigm)
- [Reading](#reading)
- [Refactoring](#refactoring)
@ -1171,6 +1172,10 @@ JavaScript is such a pervasive language that it's almost required learning.
- [mbeaudru/modern-js-cheatsheet](https://github.com/mbeaudru/modern-js-cheatsheet): cheatsheet for the JavaScript knowledge you will frequently encounter in modern projects.
#### Garbage collection
- [A Guide to the Go Garbage Collector](https://go.dev/doc/gc-guide): a very insightful guide about Go's GC
### Programming paradigm
- [Imperative vs Declarative Programming](https://tylermcginnis.com/imperative-vs-declarative-programming/), Tyler McGinnis.