Golang-第一个Go程序

一起来写第一个Go程序吧!

Let‘s Go!


创建目录

Workspace->main,创建main.go文件

1

编写Go文件

2

执行main.go文件

3

注意点

  • 第一步不创建main包的话会执行不了该文件 4
  • go文件执行的时候首先调用的是main()方法,和java差不多
Written on May 20, 2013