Go Style
Jump to navigation
Jump to search
External
- https://google.github.io/styleguide/go/
- https://go.dev/doc/effective_go
- https://github.com/golang/go/wiki/CodeReviewComments
Internal
Overview
The Go standard library is a good source of code examples, comments and style.
Naming
Identifiers should use camel case: SomeColor
or someColor
. Do not use snake case (some_color
).