Quote Originally Posted by precision View Post
I will have to compere all statements. eg. FOR/NEXT loops. while/Wend, GOTO, GOSUB/RETURN, HI/LOW, TOGGLE.
For time of Execution speed and code space.
while / wend (same as "do / loop" but without a condition) -- will always be faster than "for next loops" Main reason is because there is no counter, there's no constantly incrementing or decrementing after each iteration.

But I encourage you to conduct your tests and post the results here.

Trent Jackson