旧模板
Today there is a growing awareness that mental well-being needs to be given as much attention as physical health. In the contemporary world where change is constant and knowledge is ever-expanding, mental well-being has become increasingly importan…
初见golang语法
go项目路径
cd $GOPATH
//ls可以看到有bin,pkg,src三个文件
cd src/
mkdir GolangStudy
cd GolangStudy
mkdir firstGolanggo程序执行:
go run hello.go//如果想分两步执行:
go build hello.go
./hello导入包的方式
import "f…