-
@thorstenball I feel like treating
x++
as a statement solves most of the issues because you can't do anything non-obvious with it. Of course at that point it's just syntactic sugar forx += 1
and is it really that valuable?
x++
as a statement solves most of the issues because you can't do anything non-obvious with it.
Of course at that point it's just syntactic sugar for x += 1
and is it really that valuable?