Hi;
I have the following pseudocode:
for {
for {
for {
if(condition) continue;
some_variable = some_expression
Open in new window
so if the condition is true; it will continue but continue where? next line? Also if it's false, it will continue to the next line?
Regards.