if i have a method returning pair, i can write `va...
# announcements
c
if i have a method returning pair, i can write
val (a,b) = method()
, but not
(a,b) = method()
. why is that?