go的安装和HelloWorld

1.设置go的环境变量
      vi /etc/profile
      后面添加
      #GO
      export GOROOT=/go
      export PATH=$GOROOT/bin:$PATH
  /go 为go的安装路径
  重启客户端后生效

2.安装go
       hg clone -r release https://go.googlecode.com/hg/ $GOROOT

       此处的hg 即为上文中 安装Mercurial 所获取的命令
3.编译go
       cd $GOROOT/src

       ./all.bash
4.go的helloworld
    
       vi helloworld.go
      
       package main
       import "fmt"  // 实现格式化的I/O。
       /* Print something */ 

        func main() {

            fmt.Printf("Hello, world\n") 

         }     
    编译
    go build helloworld.go
    运行
    ./helloworld

你可能感兴趣的:(helloworld)