Enums
Enumerating the enumarators
Enums help us to describe data that shares a common interface or type but can have different impementations and meaning. They can also be represent data-less types.
This is a enum declaration that represent the days of the week as data-less types, only friday can store data.
Enum literals
Last updated