I haven't done enough programming language dev lately, but I just added a new syntax feature to a language I made a while ago (Gilia, https://github.com/mortie/gilia). I can finally do 'a += b' instead of 'a = a + b'
Now += isn't its own operator, instead '+' is an identifier, and "identifier with an equal afterwards" is a special kind of token. (Yes + is just a function)
This stuff is so satisfying to work on. Especially the bytecode gen part



