注:本文以Windos系统上Go SDK v1.17.5进行讲解
网址:yii666.com
1.go build命令
2.手动案例
2.1新建文件
在桌面新建一个文件夹HelloWorld,在HelloWorld里新建index.go
2.2配置
2.3go mod init
go mod init 后面定义你的项目名,当前目录会产生一个go.mod的文件
2.4go get -u github.com/jinzhu/configor
文章来源地址:https://www.yii666.com/blog/299467.html
2.5go run index.go
文章地址https://www.yii666.com/blog/299467.html
2.6go build
2.7./testDemo.exe
2.8删除textDmeo.exe
2.9go build index.go
编译结果:产生index文件,和编译的文件名一致,编译多个文件时,默认以第一个文件名命名
2.10 ./index.exe
2.11删除index.go
文章来源地址https://www.yii666.com/blog/299467.html
2.12go build -o dddd
2.13删除dddd
网址:yii666.com<