Constant casing cc4m_logo_inline

IDNAMING-12
TitleConstant variable names shall be SCREAMING_SNAKE_CASED.
PriorityRecommended
Severity level8
DescriptionConstant variable names shall be written in all-caps with underscores separating the words.
RationaleBy applying this naming convention, constant variables are easily identified as such.

Avoid:

r = 2.86e-23;
base_response = "Hello mr/ms ";

Instead use:

R = 2.86e-23;
BASE_RESPONSE = "Hello mr/ms ";