在大多数其他使用花括号的语言中,您可以选择放置花括号的位置。去是不同的。您可以感谢这种行为的自动分号注入(无需提前)。是的,Go确实有分号:-)
失败:
package main
import "fmt"
func main()
{ //error, can't have the opening brace on a separate line
fmt.Println("hello there!")
}
编译错误:
/tmp/sandbox826898458/main.go:6:语法错误:{之前出现意外的分号或换行符
作品:
package main
import "fmt"
func main() {
fmt.Println("works!")
}