Hi
A very minor detail.
If I used a for loop as below, referring to a string 's' (whose length
doesn't change in the routine),...
FOR i := 0 TO LEN(s$)-1 DO...
...does BlackBox optimize the expression "LEN(s$)-1" so that it doesn't
recalculate it at every iteration, or do we have to eliminate that
manually thus...
len := LEN(s$)-1;
FOR i := 0 TO len DO ...
?
Thanks!
-- Ken
--
Message posted using
http://www.talkaboutprogramming.com/group/comp.lang.oberon/
More information at http://www.talkaboutprogramming.com/faq.html