FenderLang / Fender

A functional scripting language, intended for string manipulation and general scripting on the command line
MIT License
13 stars 0 forks source link

Implement assign-operate #76

Closed boxbeam closed 1 year ago

boxbeam commented 1 year ago

Implements combined assignment and operation, like:

$x = 1
x += 2
x.println() # Should print 3