SpritzLanguage/Spritz

`+=` and `++` operators

Closed this issue · 2 comments

* TODO: `+=` and `++` operators
*/
tokens.add(Token(PLUS, null, this.position))
this.advance()
}


This issue was generated by todo-issue based on a TODO comment in 7a3001d. It's been assigned to @Wolfsurge because they committed the code.

`-=` and `--` operators

* TODO: `-=` and `--` operators
*/
tokens.add(Token(MINUS, null, this.position))
this.advance()
}


This comment was generated by todo-issue based on a TODO comment in 7a3001d. It's been assigned to @Wolfsurge because they committed the code.

Closing Issue

This comment was generated by todo-issue based on the deletion of a TODO comment in 90bbe04.