let x: Int var y: Int (x, y) = (0, 0)
let point: (Int, Int)? = nil if case (let x, var y)? = point { print(x, y) }