Anybody know the correct syntax for the SLIC For Loop? The documentation says;
but this produces syntax errors. And yes, I know For & While do the same thing. I just like For better for certain things.
Don
Code:
For(i = 0; i < 10; i = i + 1) { code }
Don
Comment