1、下载安装包
大家可以从Go lang主页上找到各个平台下的安装方法:
安装文档:http://golang.org/doc/install
Go source: http://code.google.com/p/go/
windows 下载包:http://code.google.com/p/go/downloads/list?q=OpSys-Windows+Type%3DInstaller
我自己下载的是msi包,这个不要设置环境变量,安装完成后环境变量自己设置好了
2、编写helloworld.go代码
package main
import "fmt"
func main(){
fmt.Println("Test")
}
保存为文件helloworld.go
3.、运行
go run helloworld.go
终端窗口将打印:
Hello,world
4、goclipse eclipse安装
安装步骤
http://code.google.com/p/goclipse/wiki/InstallationInstructions
插件地址:http://goclipse.googlecode.com/svn/trunk/goclipse-update-site/
和Google ADT插件安装的一样
5. 《学习Go语言》中文版
http://www.mikespook.com/learning-go/
有疑问加站长微信联系(非本文作者)