Use the 'enum' keyword followed by the constant names.
Enums are defined using the 'enum' keyword. This is followed by the constant names, each representing a distinct value. For example, defining an enum for seasons might look like: enum Season { WINTER, SPRING, SUMMER, FALL; }.