我对 GO 很陌生。试图了解如何在 go 模块中构建我的项目。
正如您在屏幕截图中看到的那样,我有一个 go 模块。在里面我有 main.go 。以下是内容。
package main
import "go-test/repo/test"
func main() {
test.GetFun()
}
在 repo/test.go 里面,下面是内容。
package repo
import "fmt"
// GetFun just for fun
func GetFun() {
fmt.Println("fun")
}
当我运行时,go build 以下是我得到的错误。
maing.go:3:8: package go-test/repo/test is not in GOROOT (/usr/local/go/src/go-test/repo/test)
桃花长相依
相关分类