Settings

Choose language

continue

continue
Used within looping structures to skip the rest of the current loop iteration and continue execution at the condition evaluation and then the beginning of the next iteration.

Usage



for(i=0,i<10,i++)
{
p1=apply(p1,10,0)
if(p1.x>100)
break
else
continue
}

Previous article

no (variable or object)

Back to category

Programming

Next article