Oliver Hunt (2013-09-23T19:05:15.000Z)
I am reading the spec and it looks (to me at least) like we expect [a,b,c] += [1,2,3] to be equivalent to a+=1; b+=2; c+=3 — is that correct or have i misread something?

—Oliver
domenic at domenicdenicola.com (2013-09-25T18:48:05.454Z)
I am reading the spec and it looks (to me at least) like we expect `[a,b,c] += [1,2,3]` to be equivalent to `a+=1; b+=2; c+=3` — is that correct or have i misread something?