break default func interface select
case defer go map struct
chan else goto package switch
const fallthrough if range type
continue for import return var
2.Go程序的一般結(jié)構(gòu)
//當(dāng)前程序的包名
package main
//導(dǎo)入其它的包
import "fmt"
//全部變量的聲明與賦值
var name = "gopher"
//一般類(lèi)型的聲明
type newType int
//結(jié)構(gòu)的聲明
type gopher struct{}
//接口的聲明
type golang interface{}
//由main函數(shù)作為程序入口點(diǎn)啟動(dòng)
func main() {
fmt.Println("Hello World!")
}