Linux 安装GO开发环境
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 安装GO开发环境相关的知识,希望对你有一定的参考价值。
安装GO开发环境
[[email protected] ~]# yum install golang
GO的Hello world
[[email protected] ~]# cat hello.go package main import ( "fmt" ) func main() { fmt.Println("Hello world") } [[email protected] ~]#
直接运行
[[email protected] ~]# go run hello.go Hello world [[email protected] ~]#
编译成机器码,并运行
[[email protected] ~]# go build hello.go [[email protected] ~]# ./hello Hello world [[email protected] ~]#
本文出自 “李春利” 博客,请务必保留此出处http://990487026.blog.51cto.com/10133282/1966989
以上是关于Linux 安装GO开发环境的主要内容,如果未能解决你的问题,请参考以下文章