操作系统:centos7
安装方法
yum search golang
yum install golang
[root@ctf z]# go version
go version go1.6.3 linux/amd64
[root@ctf z]#
- 创建测试文件
hello_world.go
- 1
- 1
- 编辑文件
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 运算测试文件
hello_world.go
http://blog.csdn.net/warnerwu/article/details/73825105
[root@ctf z]# go build helloworld.go [root@ctf z]# ./helloworld Hello world! [root@ctf z]#
原文链接:https://www.f2er.com/centos/375992.html