1package main 2 3import "fmt" 4 5var myst = "Shall we?" 6 7func main () { 8 fmt.Println ("Before assignment") 9 st := "Hello, world!" // this intentionally shadows the global "st" 10 fmt.Println (st) // set breakpoint 1 here 11 fmt.Println (myst) 12} 13