标准包的位置在 go 的安装目录下的 src 目录中。
示例1
.
├── bin
├── pkg
└── src
└── hello
├── hello.go
└── utils.go
utils.go :
package main
func Add(a int, b int) int {
return a+b
}
hello.go :
package main
import "fmt"
func main() {
result := Add(1, 2)
fmt.Printf("result: %v\n", result)
}
运行:
$ cd src/hello
$ go build
$ ./hello
result: 3