break to exit the current code loop.

Example

while (true){
	if (x % 2 == 0){
		continue;
	}
	x--;
}