c.bauherren.ovhThe jokes continue to write themselves

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 innil`

var p *int

The & operater generates a pointer to its operand

i := 42

p = &i