You can do `var (foo, bar) = thingReturningPair()`...
# announcements
a
You can do
var (foo, bar) = thingReturningPair()
but is there a shorthand for assigning rather than creating new variables? Like
(foo, bar) = thingReturningPair()