摘要:
需求:Go开发环境配置以及VScode插件安装 1.1 安装go1.20.6.windows-amd64 .msi 下载地址:https://golang.google.cn/dl/ (1) 选择Windows版本go1.20.6.windows-amd64 .msi (2) 下载完成后,双击.ms 阅读全文
摘要:
调试:在Vscode软件中调试.go文件代码 1.1.1 确保调试文件正常运行 准备好.go文件,并且该文件能正常运行,终端输入命令运行程序,如:go run time.go 测试代码: package main import ( "fmt" "time" ) func main() { fmt.P 阅读全文