package main import "fmt" func main() { testString := "Hello" pointerToTestString := &testString fmt.Println(pointerToTestString) }