Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 438 Bytes

use_long_variable_names.md

File metadata and controls

16 lines (9 loc) · 438 Bytes

Use long variable names

Use long variable names, to be descriptive. You'll be surprised how much the readability of the code improves when the variable names make sense.

Prefer this:

std::string songName = "Boom! Boom! Boom!";

Over this:

std::string s = "Boom! Boom! Boom!";

References