今天我们学习搭建一个学习go语言的开发环境。
下载地址:https://golang.org/dl/
项目结构如下:
其中的hello.go的代码如下:
package main import "fmt" func main() { fmt.Printf("Hello World."); }
每个 Go 程序都是由包组成的,程序运行的入口是包 main。
Go基础---->go的第一个程序
原文:http://www.cnblogs.com/huhx/p/baseusego1.html