Go(又称 Golang)是 Google 的 Robert Griesemer,Rob Pike 及 Ken Thompson 开发的一种静态强类型、编译型语言。Go 语言语法与 C 相近,但功能上有:内存安全,GC(垃圾回收),结构形态及 CSP-style 并发计算。
简介
描述
撰写风格
-
每行程序结束后不需要撰写分号(;)。
-
大括号({)不能够换行放置。
-
if判断式和for循环不需要以小括号包覆起来。
编译器
官方地址:https://golang.google.cn/
安装流程:
下载linux安装包之后,放在/根目录下或者/usr/local/下根据自己的安装路径即可
[root@localhost ~]# ls
anaconda-ks.cfg go1.12.7.linux-amd64.tar.gz test1.go 公共 视频 文档 音乐
go initial-setup-ks.cfg test.go 模板 图片 下载 桌面
[root@localhost ~]# tar xf go1.12.7.linux-amd64.tar.gz
在末尾添加PATH环境变量,我的在root下所以放在这里,根据自己的安装路径设置
[root@localhost ~]# vim /etc/profile
export PATH=$PATH:/root/go/bin
[root@localhost ~]# go
go godoc gofmt
现在已经安装好了,让我们来体验go语言
[root@localhost ~]# vim test.go
[root@localhost ~]# go run test.go
hello,欢迎浏览我的博客,我是赵程
让我们一起来学习go语言吧
[root@localhost ~]# vim test.go
[root@localhost ~]# go run test.go
面积为 600
[root@localhost ~]# vim test.go
[root@localhost ~]# go run test.go
0 1 2 yes yes 200 200 7 8
[root@localhost ~]# vim test.go
[root@localhost ~]# go run test.go
好好学习,天天向上 你好,hello,word false 123456789
来源:https://www.cnblogs.com/zc1741845455/p/11326957.html