
go
彭世瑜
要成为程序员的男人,个人主页:www.pengshiyu.com
-
原创 mac环境下安装go
安装$ brew install go检查$ go version配置路径打开文件$ vim ~/.bash_profileGOROOT=/usr/local/Cellar/go/1.10.1/libexecexport GOROOTexport GOPATH=/Users/yourname/mygoexport GOBIN=$GOPATH/binexport ...2018-07-09 18:06:07951
0
-
原创 sublime3 指定 go语言编译器
编译文件Go.sublime-build{ "cmd": ["go", "run", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "working_dir": "$file_path", "se2018-07-09 22:25:40498
0
-
原创 runnerw.exe: CreateProcess failed with error 216:
goland中运行报错:runnerw.exe: CreateProcess failed with error 216: 原因package的名称不是main,改为main之后ok2018-07-09 22:35:312420
2
-
原创 go语言简单入门
特点,优势运行效率高,开发效率高,部署简单 语言层面支持并发 内置runtime 内置gofmt脚本化 静态类型 + 编译型 原生支持并发编程劣势语法糖没有python多 运行速度不及c,比c++,java快 第三方库比较少应用服务器编程 网络编程 分布式系统 云平台环境安装下载安装: 官网:https://golang.org/...2018-07-10 22:49:30124
0