Go Style: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 7: Line 7:
* [[Go Engineering]]
* [[Go Engineering]]
=Overview=
=Overview=
The [[Go_Language_Modularization#Standard_library|Go standard library]] is a good source of code examples, comments and style.


=Identifiers=
=Identifiers=

Revision as of 02:13, 6 September 2023

External

Internal

Overview

The Go standard library is a good source of code examples, comments and style.

Identifiers

https://google.github.io/styleguide/go/guide#mixedcaps

Identifiers should use camel case: SomeColor or someColor. Do not use snake case (some_color).