0 Members and 2 Guests are viewing this topic.
In loops, it will exit the loop if EXP is true. But it works just like a regular End otherwise.
Endif == true => continue ( directly go to loop begin)Endif == false => break; ( stop the loop).(It's what I understood from Runner)