Go follows a "less is more" philosophy. It has keywords compared to C++'s + and Java's +. There's usually one way to do something, not five.
This means less time debating style choices and more time writing code. When you read Go code written by someone else, it looks familiar. The language enforces consistency through tools like gofmt, which formats all Go code the same way.