7.9.1.10. GEL break StatementΒΆ

GEL supports the standard C break statement within the iteration statements: for, while, and do-while. The general form is:

break;


A break statement terminates execution of the enclosing statement. Execution resumes at the statement following the terminated statement.

for (j=0; j<i; j++)
{
if (j == k)
break;
}