Go 初学
mod -> package -> function
命令
go mod init xxx/xx
go mod tidy
go mod edit // https://golang.org/doc/tutorial/call-module-code
go run .
go install
go build
标准库
errors
fmt
math/rand
time
语法
自动执行 init 函数
:= 声明并初始化
message, err := greeting.Hello("") 返回双值
[]string{} 切片 // 类似数组
make(map[key-type]value-type) // 生成指定类型的 map