尝试运行一个简单的hello world go程序将返回错误。# command-line-argumentsruntime.main: undefined: main.initruntime.main: undefined: main.main文件内容:package main import "fmt"func main() { fmt.Println("Hello, World!")}main显然已定义,添加func init() {}无济于事。无论是run和build命令导致同样的错误。go build hello_test.gogo run hello_test.go
1 回答
桃花长相依
TA贡献1860条经验 获得超8个赞
将hello_test.go重命名为例如hello.go,它应该可以正常工作。以 _test 结尾的 Go 源文件是特殊的(对于 go 构建系统)。它们是为go test
命令保留的。
- 1 回答
- 0 关注
- 214 浏览
添加回答
举报
0/150
提交
取消