In olden languages like c, we can create enumerations with only integers. Swift allows to create enumerations in any type(int, string, Float) and easily create constants.
Enums can conform to protocols like Codable, CaseIterable.
Basic Enum:
enum...