This code is invalid
for (int i = 0; i < 1000; i += 10) { }
for whatever reason you can still use the + operator, but not the = operator.
this is standard functionality in any language with a for loop like this
This code is invalid
for (int i = 0; i < 1000; i += 10) { }
for whatever reason you can still use the + operator, but not the = operator.
this is standard functionality in any language with a for loop like this