Closed KCreate closed 8 years ago
Expressions like this should be possible
1++; # 2 # a == 2 a++; # 3 (a)++; # 4 # a == 4
A postfix operator can be placed after every Term. If the left side as an identifier the result of the postfix expression will be assigned to the identifier in the current scope.
Term
Duplicate of #59
Expressions like this should be possible
A postfix operator can be placed after every
Term
. If the left side as an identifier the result of the postfix expression will be assigned to the identifier in the current scope.