1. Introduction to Pointers
x := 42
// "x" is the name of a location in memory. That location is storing the integer value of 42A Pointer Is a Variable
var p *intmyString := "hello"
myStringPtr := &myStringx := 42
// "x" is the name of a location in memory. That location is storing the integer value of 42var p *intmyString := "hello"
myStringPtr := &myString