mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-22 16:03:31 +08:00
12 lines
110 B
Go
12 lines
110 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"package2"
|
||
|
)
|
||
|
|
||
|
func main () {
|
||
|
fmt.Println ("Shall we?")
|
||
|
package2.Foo ()
|
||
|
}
|