diff --git a/README.md b/README.md index 7678000..696febf 100644 --- a/README.md +++ b/README.md @@ -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.