package main //程序的包名//导包import ( "fmt" "time")//main函数func main() { fmt.Print("hello Go!!!") time.Sleep(1 * time.Second)}