当我尝试这种风格的第一个hello世界时,我只是新学习Go:
func main() { ...somemagic... }
并且6g编译器说这是错误的.
但是这种风格:
func main(){ ...somemagic... }
没关系.
Go中的第一个支架对样式是非法的吗?
go
go ×1