技术博客

go语言-hello word

2019-02-24  本文已影响1人  老生住长亭

星期天从外边回来,学习久久想学的go语言。程序的第一个仍然是hello word!!

  1. go install 安装
curl -O https://storage.googleapis.com/golang/go1.11.2.linux-amd64.tar.gz
或者链接:
https://pan.baidu.com/s/18Y3OG7XaH45xnXLzzy4XDg  密码:yepx
  1. evn configration 配置

vi ~/.profile 内容:

WORK_HOME=/home/botter/go
export GOPATH=$WORK_HOME/work
export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
  1. hello word

在WORK_HOME创建个目录:cn/nest

hello.go 内容:

package main
import "fmt"
func main() {
    fmt.Printf("hello, world\n")
}
  1. go 运行,

go build hello.go 编译

go clean hello.go 清理

go run hello.go 运行

结果:

hello, world

5、开篇思维结果导图:

go语言.png
上一篇下一篇

猜你喜欢

热点阅读