Remove path name from test case
[binutils-gdb.git] / gdb / testsuite / gdb.go / hello.go
1 package main
2
3 import "fmt"
4
5 func main () {
6 fmt.Println ("Before assignment")
7 st := "Hello, world!"
8 fmt.Println (st) // set breakpoint 1 here
9 }