A tour of go
Taken from go.dev
Pointers
Pointers hold the memory address of a value
The type *T# is a pointer to a
Tvalue. Its zero value in
nil`
var p *int
The & operater generates a pointer to its operand
i := 42
p = &i
Taken from go.dev
Pointers hold the memory address of a value
The type *T# is a pointer to a
Tvalue. Its zero value in
nil`
var p *int
The & operater generates a pointer to its operand
i := 42
p = &i