aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.go/hello.go
blob: 6e561129cdc6798291049d68e66045da9abe6f64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package main

import "fmt"

var myst = "Shall we?"

func main () {
  fmt.Println ("Before assignment") // set breakpoint 1 here
  st := "Hello, world!" // this intentionally shadows the global "st"
  fmt.Println (st) // set breakpoint 2 here
  fmt.Println (myst) // set breakpoint 2 here
}