在 test 文件夹,写了 test.go ,内容 :
package main import "fmt" func main() { fmt.Println("Hello, World!") }
在 test 目录下,运行 go run test.go ,成功输出 Hello, World!
如果运行 go run .,就会提示 go: go.mod file not found in current directory or any parent directory; see 'go help modules'
解决步骤:
我这一直是开启的。接着看下一步。
运行 go run .,成功输出 Hello, World!。
至此问题解决。
总结:
希望对你有帮助
完。