for i = 1 to 50 // the continue below has no impact on this outer for loop
while ( x < 100 )
x++
if ( x == 25 ) then continue // skips the remainder of this while loop iteration and resumes at the while's conditional test
fn CallSomeThingElse
wend
fn DoSomeGoodWork
next