What does this code print?
enum Positions: Int { case first, second, third, other } print (Positions.other.rawValue)
3
nil Reference: The Swift Programming Language: Language Guide: The Basics: Raw Values
0
other