Go入门

1.安装Go环境:http://code.google.com/p/golang-china/wiki/Install

2.语法介绍:http://golang.org/doc/docs.html。Course Notes:Slides from a 3-day course about the Go programming language. A more thorough introduction than the tutorial.
http://golang.org/doc/GoCourseDay1.pdf
http://golang.org/doc/GoCourseDay2.pdf
http://golang.org/doc/GoCourseDay3.pdf

3.学习Go,当然要写很多小例子程序才能真正理解。

编写小例子程序的Makefile原来可以如此简单,不用自己一个一个的写依赖和规则,这个也应该是本文章对于刚接触Go的初学者最有价值的地方了。:)

#begin

include $(GOROOT)/src/Make.inc
TARG=hello
GOFILES=\
    hello.go\

include $(GOROOT)/src/Make.cmd

#end

go文件的依赖关系,go可以通过package来发现(待深入理解)

4.Practical Go Programming:
http://wh3rd.net/practical-go/#(1)  相当精彩的生成短域名的WebService 

5. Go IDE

http://code.google.com/p/liteide/ 

原文地址:https://www.cnblogs.com/Chrome/p/2284424.html