go command:
go build: compile and create new program
go run: compile and execute it
go fmt: format all go code
go install: compile and install a package
go get: download the raw source code of other package
go test: run any tests in the project
Package list: golang.org/pkg
go func(): 开启一个子协程执行该匿名函数内的逻辑。
chan:
<- 表示从chan里读取或者发送数据