• Used to define a set of constants.
enum class Day {
    MONDAY, TUESDAY, WEDNESDAY
}
val today = Day.MONDAY
println(today.name) // "MONDAY"