Pointers - Go Lang Practical Programming Tutorial p.4

Welcome to part 4 of the Go programming tutorial series. In the previous tutorial, we covered some function basics. Now, we’re going to cover the last basic concept before creating a simple web app, which is pointers. Pointers allow you to reference from memory, which lets you do some interesting things. Let’s do a basic run-through. Text tutorials and sample code: sentdex
Back to Top