ELENA-LANG / elena-lang

ELENA is a general-purpose language with late binding. It is multi-paradigm, combining features of functional and object-oriented programming. Rich set of tools are provided to deal with message dispatching : multi-methods, message qualifying, generic message handlers, run-time interfaces
https://elena-lang.github.io/
MIT License
227 stars 23 forks source link

Post increment/decrement operators #629

Closed arakov closed 8 months ago

arakov commented 8 months ago

Post increment/decrement operators have to be supported.

So the following code can be simplified:

for (int i := 0, i < n, i += 1) { ... }

like this:

for (int i := 0, i < n, i++) { ... }
arakov commented 8 months ago

fixed in ELENA 6.0.7