var a int
a = 1
var a,b int
a =1
b = 2
var a,b = 1,2
var s string = "hello world"
a, b := 1,2 该变量类型的定义只能在函数内定义
var(
aa = 3
s = "abc"
b = true
)