Initial pass at Go language support.
[deliverable/binutils-gdb.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 }
This page took 0.052192 seconds and 4 git commands to generate.