如何GOPATH从代码块中获取电流?
runtime只有GOROOT:
// GOROOT returns the root of the Go tree.
// It uses the GOROOT environment variable, if set,
// or else the root used during the Go build.
func GOROOT() string {
s := gogetenv("GOROOT")
if s != "" {
return s
}
return defaultGoroot
}
我可以创建一个已GOROOT替换为 的函数GOPATH,但是否有内置函数?
互换的青春
萧十郎
12345678_0001
相关分类