[For] A 'For to' which reacts like a 'for downto'
Hi everybody,
I got a this extract of code which uses a for:
What's happening ?
Answer:
It is driving me crazy ...
Thanx in advance ...
I got a this extract of code which uses a for:
- Code: Select all
For Cpt:=8 to 128 do
D[CPT] := S.D[CPT];
What's happening ?
Answer:
D[121] := S.D[121];
D[120] := S.D[120];
D[119] := S.D[119];
...
D[2] := S.D[2];
D[1] := S.D[1];
It is driving me crazy ...
Thanx in advance ...