differentmatt / filbert

JavaScript parser of Python
Other
133 stars 27 forks source link

Multiple Assignment doesn't work #71

Open nemoyatpeace opened 9 years ago

nemoyatpeace commented 9 years ago

I tried this line: a=b=1

This should work the same as: a,b=1,1

But it doesn't work properly.