标签:golang
go run命令-临时编译并运行代码
前言 go run 是 Go 语言中一个用于编译并运行源代码文件的命令。它提供了一个简单的方法来快速执行 Go 程序,无需显式构建和生成可执行文件。 使用 go run 命令时,需要提供一个或多个……
07-03 立刻查看
【go build报错】go: go.mod file not found in current directory or any parent directory; see 'go help modules'
问题 安装完golang后,创建一个index.go的测试代码文件,执行go build编译报错如下: go: go.mod file not found in current directory o……
06-30 立刻查看