Swift - Control Flow
What will be printed by this Swift code?
let number = 5
switch number {
case 1..<5: print("Less than 5")
case 5: print("Exactly 5")
case 6...10: print("Between 6 and 10")
default: print("Out of range")
}