Continue Statement Example
Previous Topic  Next Topic 

An example of the continue statement is shown below:


// Loop until the afternoon (The sys_time() function returns HHMMSS)

while(1)

    if(sys_time() < 120000)

        // Jump to the top of the loop

        continue;

    else

        break;

    endif

endwhile