My Journey with Pointers in Go: Value vs Pointer
Aug 27, 2025 · 5 min read · When I first started with Go, I noticed something interesting: many developers seemed obsessed with pointers. Even for tiny structs, I'd see code like: func NewUser(name *string, age *int) *User I thought, "Okay, pointers must be the professional wa...
Join discussion