Compound arithmetic operators (+=, -=, *=, /=) are missing from the language at the moment.
This is an issue to track the implementation of their addition to the language.
TODO:
Note: This issue requires a lot of work, but is quite easy to do since the logic already exists throughout the code for the arithmetic operators. So implementation is just looking at what already exists and duplicating it with some modification.
For that reason it could be a nice deep-dive introduction to the codebase for someone who wants to learn how refu works.
Compound arithmetic operators (
+=,-=,*=,/=) are missing from the language at the moment.This is an issue to track the implementation of their addition to the language.
TODO:
binary operators do.
Note: This issue requires a lot of work, but is quite easy to do since the logic already exists throughout the code for the arithmetic operators. So implementation is just looking at what already exists and duplicating it with some modification.
For that reason it could be a nice deep-dive introduction to the codebase for someone who wants to learn how refu works.