在windows下配置GO编译环境

1、下载安装包

大家可以从Go lang主页上找到各个平台下的安装方法:

主页:http://golang.org/#  

安装文档: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/



本文来自:CSDN博客

感谢作者:shlpyy

查看原文:在windows下配置GO编译环境

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。