/* comment and comment nesting test */

/* Comment level 1 /* Comment level 2
/* Comment level 3 */
Comment Level 2 /* Comment level 3 again
*/ Comment Level 2 */ Comment level 1
About to exit to code level */

/* Some code I commented out

while MyBool do

	int MyInt;
	MyInt := (4+3 )* 50 %5;

	/* int AnIntIDontNeed */

	/* check some conditions */
	if MyInt>= 3 then
		read MyString;
	else
		read MyVar;
	end if

	/* output string variable contents /* extra comment */ */
	write MyString;

	/* set loop condition */
	MyBool := ( MyString = MyVar ) || ( MyInt <> 5 ) && MyVar <> "";

end while

*/
