/me again
Please help how to solve this issue.
TCC/LE 13.06 and TCC 17:
Simple For loop:
Works fine.
Simple Do loop:
Works fine.
Mixed together:
The result is
while I expected 18 lines.
Of course - real case is not so simple. I need For loop due to For /R switch (I can't find similar Do loop).
Best regards.
Please help how to solve this issue.
TCC/LE 13.06 and TCC 17:
Simple For loop:
Code:
*For /l x in (1,1,3) do (
*echo FOR
)
Simple Do loop:
Code:
*Do 5
*echo DO
*EndDo
Mixed together:
Code:
*For /l x in (1,1,3) do (
*echo FOR
*Do 5
*echo DO
*EndDo
)
Code:
FOR
Of course - real case is not so simple. I need For loop due to For /R switch (I can't find similar Do loop).
Best regards.