1
2
3
4
5
6
7
8
9
10
11
|
package main
func main() {
// Go中的命名规则是开头必须是一个字母(Unicode中的字符即可)或下划线,不能以数字开头。
// 后面可以跟任意数量的字符、数字和下划线, 并区分大小写, 比如heapSort和HeapSort
/* break default func interface select
case defer go map struct
chan else goto package switch
const fallthrough if range type
continue for import return var*/
}
|