码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 安装GO开发环境

时间:2017-09-20 00:59:29      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:linux 安装go开发环境


安装GO开发环境

[root@localhost ~]# yum install golang


GO的Hello world

[root@localhost ~]# cat hello.go 
package main

import (
    "fmt"
)

func main() {
    fmt.Println("Hello world")
}
[root@localhost ~]#


直接运行

[root@localhost ~]# go run hello.go 
Hello world
[root@localhost ~]#




编译成机器码,并运行

[root@localhost ~]# go build  hello.go 
[root@localhost ~]# ./hello 
Hello world
[root@localhost ~]#




本文出自 “李春利” 博客,请务必保留此出处http://990487026.blog.51cto.com/10133282/1966989

Linux 安装GO开发环境

标签:linux 安装go开发环境

原文地址:http://990487026.blog.51cto.com/10133282/1966989

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!