Home Keywords Keyword continue Description Jump to start of enclosing loop. Example call seed_random; while 1 == 1; int rand; call get_random -> rand; rand = rand % 100; if rand < 50; # Jump to while 1 == 1; continue; else; break; end; end;