An open API service indexing awesome lists of open source software.

https://github.com/isensee-bastian/pointers-intro

Tutorial code for my video Introduction to Pointers in Golang
https://github.com/isensee-bastian/pointers-intro

basic-programming beginners-tutorial-series golang learn-to-code pointers youtube

Last synced: about 1 month ago
JSON representation

Tutorial code for my video Introduction to Pointers in Golang

Awesome Lists containing this project

README

          

# Pointers

* Reference vs value semantics
* Creating pointers, dereferencing
* What does nil mean
* Structs and pointers
* Why don't slices and maps need pointers
* What about pointer arithmetic