Swift - Control Flow
What will be printed by this Swift code?
let age = 20
switch age {
case let x where x < 13:
print("Child")
case let x where x >= 13 && x < 20:
print("Teenager")
case let x where x >= 20:
print("Adult")
default:
print("Unknown")
}