go语言基础 hello world
1.常量的定义
//常量定义
const PI =3.14
2.一般类型声明
type myInt int//数据类型
3.全局变量的声明与赋值
var myName ="golang"
4.结构的声明
type myPerson struct {}
5.接口的声明
type myGolang interface {}
6.hello world !
func main() {
fmt.Println("hello world! 你好世界! ")
}
有疑问加站长微信联系(非本文作者)