Page 1 of 1

Problem with the nested loop

Posted: Sat Feb 24, 2007 10:26 am
by jupiter
Hi guys! At first I want to say that your software is outstanding. I recently downloaded it and was quite amazed...
But I have found something to point out. It seems that inner loops don't work properly. For example:

1 Simple Loop
2    //something 1
3     If (condition) then
4        break
5     End If
6     Simple Loop
7        //something 2
8     End Loop
9 End Loop
10 //something 3

There is a nested loop (lines 6-8) inside the outer one (lines 1-9). Once "if" condition (line 3) is true the "break" command executes and ends up the current loop. The program should continue the execution at line 10. But instead it just jumps over the first "End Loop" statement (line 8) and the program continues from line 9. Is it right?

Problem with the nested loop

Posted: Sun Feb 25, 2007 2:16 am
by Oleg
It seems a malfunction. We'll investigate a problem and fix ASAP.