From 6c772624d3eaa5526ad7fdb87f6f8d5d5b4c0d5e Mon Sep 17 00:00:00 2001 From: Charles-Axel Dein <120501+charlax@users.noreply.github.com> Date: Wed, 28 Sep 2022 14:32:42 +0200 Subject: [PATCH] Add garbage collection --- README.md | 5 +++++ 1 file changed, 5 insertions(+) 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.