1package main 2 3import "fmt" 4 5var st = "We shall" 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} 12