From 627fb1deb03eb700b727d65f200dee8c32714fe8 Mon Sep 17 00:00:00 2001 From: Ruslan Semagin <53819609+pixel365@users.noreply.github.com> Date: Tue, 28 May 2024 12:35:40 +0300 Subject: [PATCH] feat: add useful links for learning pointers in golang (#5747) * feat: add useful links for learning pointers in golang --- .../golang/content/101-go-advanced/112-pointers.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/golang/content/101-go-advanced/112-pointers.md b/src/data/roadmaps/golang/content/101-go-advanced/112-pointers.md index 378508434..f195a4bf3 100644 --- a/src/data/roadmaps/golang/content/101-go-advanced/112-pointers.md +++ b/src/data/roadmaps/golang/content/101-go-advanced/112-pointers.md @@ -1,3 +1,9 @@ # Go Pointers -Go pointers are a powerful feature that allows you to work with memory addresses directly. They are used to store the memory address of a variable. This can be useful when you need to pass a large amount of data to a function or when you need to modify the value of a variable inside a function. \ No newline at end of file +Go pointers are a powerful feature that allows you to work with memory addresses directly. They are used to store the memory address of a variable. This can be useful when you need to pass a large amount of data to a function or when you need to modify the value of a variable inside a function. + +Visit the following resources to learn more: + +- [Pointers](https://go.dev/tour/moretypes/1) +- [Go by Example: Pointers](https://gobyexample.com/pointers) +- [YouTube: Pointers](https://www.youtube.com/watch?v=a4HcEsJ1hIE)