An emuneration is a type that lists a set of allowed values:
Season now = Season.Winter;
// New types MUST go after other code (or in another file).
//
// Unlike methods, type definitions cannot be inside your main method.
// Placing them at the end of the file allows the compiler to "detect" and close
// the main method automatically.
enum Season { Winter, Spring, Summer, Fall }