troyhen / neo

Neo Programming Language
https://groups.google.com/forum/#!forum/neo-lang
12 stars 0 forks source link

Add basic assignment expressions #29

Closed troyhen closed 12 years ago

troyhen commented 12 years ago

These need to work

a = 1
b = c = 2
a = (b = 1) + 2
troyhen commented 12 years ago

Done