View on GitHub

Concert

Concert is an imperative, concurrent, strongly typed scripting language

Download this project as a .zip file Download this project as a tar.gz file

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;