1. 下载软件,http://download.csdn.net/detail/selecthis/3031645#comment ,一步步next 就行了。
2 . 在notepad++写个小程序:
package main import "fmt" func main() { fmt.Printf("hello, world\n") }
另存为hello.go3. 进入cmd ,进入hello.go所在的路径。
$ 8g hello.go # 编译; 输出 hello.8 $ 8l hello.8 # 链接; 输出 8.out $ 8.out hello, world $
有疑问加站长微信联系(非本文作者)