Make "thread apply" use the gdb::option framework
[external/binutils.git] / gdb / testsuite / gdb.go / package1.go
1 package main
2
3 import (
4   "fmt"
5   "package2"
6 )
7
8 func main () {
9   fmt.Println ("Shall we?")
10   package2.Foo ()
11 }