xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.go/hello.go (revision 924795e69c8bb3f17afd8fcbb799710cc1719dc4)
1package main
2
3import "fmt"
4
5func main () {
6  fmt.Println ("Before assignment")
7  st := "Hello, world!"
8  fmt.Println (st) // set breakpoint 1 here
9}
10