Go语言入门

开门见山,第一段代码肯定打印hello,world

package main

import "fmt"

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