const (
x = iota // 0
y // 1
z // 2
)
const (
a = iota // 0
b // 1
c = 100 // 100
d // 100
e = iota // 4
f // 5
)
const (
_, _ = iota, iota * 10 // 0, 0 * 10
a, b // 1, 1 * 10
c, d // 2, 2 * 10
)
标签:Go,10,100,const,iota
From: https://www.cnblogs.com/h6lianfu/p/17052533.html