Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 177 Bytes

Naming.md

File metadata and controls

13 lines (9 loc) · 177 Bytes

Naming

Constants

Write constants in CamelCase, not UPPERCASE.

// Perfect.
const int LeftMargin = 10;

// No need to shout.
const int LEFT_MARGIN = 10;