//#isut
// test generation of the if/then/else expression and good evaluation of boolean 
// NEED ALSO A MINIMAL IMPLEMENTATION OF GENCOND (part 7)
{
	if(true) {
		printInt(1);
		printChar(10);
		printChar(13);
	};	
	if(true){
		printInt(1);
		printChar(10);
		printChar(13);
	}
	else {
		printInt(0);
		printChar(10);
		printChar(13);
	};
	if(false) {
		printInt(0);
		printChar(10);
		printChar(13);
	}
	else {
		printInt(1);
		printChar(10);
		printChar(13);
	};
	if(true) {
		if(false) {
			printInt(0);
			printChar(10);
			printChar(13);
		}
		else {
			printInt(1);
			printChar(10);
			printChar(13);
		};
	}
	else {
		printInt(0);
		printChar(10);
		printChar(13);
	};
}