Swift - Control Flow
Given this Swift code, what will be printed?
let point = (x: 3, y: 4)
switch point {
case let (x, y) where x == y:
print("On the diagonal")
case let (x, y) where x * x + y * y == 25:
print("On the circle with radius 5")
default:
print("Somewhere else")
}