I'm just new to learn Go, when I try my first hello world with this style:
func main()
{
...somemagic...
}
and the 6g compiler says that's wrong.
But with this style:
func main(){
...somemagic...
}
That's OK.
Is the first bracket pair style illegal in Go?