Hello,Golang

我们先抛出一个简单的Helloword程序,以此来分析基本构造。

1
2
3
4
5
6
package main
import "fmt"

func main() {
  fmt.Println("Hello,world")
}