can I assign to existing `var` by destructuring? ...
# getting-started
p
can I assign to existing
var
by destructuring?
Copy code
var x: Double
var y: Double

(x, y) = fooReturningXY()
this does not compile 😞