Types & Protocols
Type and protocol names should start with an uppercase letter.
Example:
protocol Collection {}
struct String {}
class UIView {}
struct Int {}
enum Color {}
Everything else...
Variables, constants, functions and enumeration cases should start with a lowercase letter.
Exa...