Closed KCreate closed 8 years ago
Default behaviour is a syntax rewrite to:
let a = 25;
a++;
# would become:
a = a + 1;
If the identifier or literal is not a numeric literal, the interpreter will search for a method called __pplus
or __pminus
respectively. An error is thrown if nothing is found.
Closed in favor of #57
Allows to write these things: