BREAK:

	The break statement functions similar to the C break. For
	example: 

	> while ( i < 100 ) {
	>   if(i == 10) { break; }
	>   i++;
	> }
	> i
	 i =
	          10

	The break statement "breaks" execution of the current for or
	while statement.

