let anotherPoint = (2,0)
switch anotherPoint {
case (let x , 0) where x = (y +2):
print("on the x-axis with an x value of \(x)")
case (0 , let y):
print("on the y-axis with an y value of \(x)")
case(let x, let y):
print("somewhere else at (\(x),\(y))")
}