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
- Host: GitHub
- URL: https://github.com/isensee-bastian/pointers-intro
- Owner: isensee-bastian
- License: mit
- Created: 2022-03-07T22:20:17.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-07T22:39:32.000Z (over 4 years ago)
- Last Synced: 2025-04-02T21:43:15.731Z (about 1 year ago)
- Topics: basic-programming, beginners-tutorial-series, golang, learn-to-code, pointers, youtube
- Language: Go
- Homepage: https://youtu.be/K2U1N9jjcMc
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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