enum Season: Int { case summer = 1, fall, winter, spring}let baseWinter = Season.winter.rawValue//baseWinter is 3print("baseWinter is \(baseWinter)")