break


A break statement will search for the next endwhile or endfor statement
continue the execution at the line after.

Example

for ( i = 0; i < 10; i++)
   a += b;
   if ( a > 100)
     break;
endfor