1、Go语言是一个快速的、静态类型的编译型语言
2、查看和使用常见的Go命令
help  		go help [command] get more information about command
build       compile packages and dependencies
clean       remove object files
env         print Go environment information
fix         run go tool fix on packages
fmt         run gofmt on package sources
generate    generate Go files by processing source
get         download and install packages and dependencies
install     compile and install packages and dependencies
list        list packages
run         compile and run Go program
test        test packages
tool        run specified go tool
version     print Go version
vet         run go tool vet on packages
3、额外的帮助提示
help  Use "go help [topic]" for more information about that topic.
c           calling between Go and C
filetype    file types
gopath      GOPATH environment variable
importpath  import path syntax
packages    description of package lists
testflag    description of testing flags
testfunc    description of testing functions
4、Go mod与Go vender区别

https://www.cnblogs.com/youhui/articles/11152843.html

5、学习参考

上述网址中包含很多学习go语言的参考博文,书籍和官网内容