Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 422 Bytes

keyword_continue.md

File metadata and controls

26 lines (19 loc) · 422 Bytes

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;