Go Style: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=External= * https://google.github.io/styleguide/go/ =Internal= * Go Engineering") |
|||
Line 3: | Line 3: | ||
=Internal= | =Internal= | ||
* [[Go Engineering]] | * [[Go Engineering]] | ||
=Identifiers= | |||
Camel case are recommended: <code>SomeColor</code> or <code>someColor</code>. Do not use snake case (<code>some_color</code>). |
Revision as of 22:36, 18 August 2023
External
Internal
Identifiers
Camel case are recommended: SomeColor
or someColor
. Do not use snake case (some_color
).