fn: break
[contents]

Contents:

Syntax

The syntax for break calls is:

break

f++ example

Example of break being used with f++:

:=(int, i=0)
while(1)
{
	console("i: ", i)
	if(i > 10)
		break
	++(i)
}

n++ example

Example of break being used with n++:

@:=(int, i=0)
@while(1)
{
	@console("i: ", i)
	@if(i > 10)
		@break
	@++(i)
}