//当前程序包名
package main
//导入其他的包
import std "fmt"
//常量定义
const PI = 3.14
//全局变量的声明与复制
var name = "gohpher"
//一般类型声明
type newType int
// 结构的声明
type gopher struct{}
//接口的声明
type golang interface{}
//使用main函数作为程序的入口点启动
func main() {
std.Println("Hello world!")
}
有疑问加站长微信联系(非本文作者)