elfe
elfe copied to clipboard
Implement shortcut notations for increment
Currently, Var := Var + 1 works, but Var += 1 does not. Creating the += operator runs into an issue with assignment very similar to the one described in #7.
A naive definition would be:
Var += Incr -> Var := Var + Incr
But this will simply create a variable called Var.