package main

import "fmt"

func main () {
  fmt.Println ("Before assignment")
  st := "Hello, world!"
  fmt.Println (st) // set breakpoint 1 here
}
