当我尝试使用这种风格的第一个Hello World时,我才刚开始学习Go:
func main()
{
...somemagic...
}
6g编译器说那是错误的。
但是用这种风格:
func main(){
没关系。
Go中的第一对括号样式是否非法?
相关分类