elfe icon indicating copy to clipboard operation
elfe copied to clipboard

Implement shortcut notations for increment

Open c3d opened this issue 10 years ago • 0 comments

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.

c3d avatar Jul 15 '15 21:07 c3d