Newer
Older
zweic / tests / 5 / while.zwei
@glproj03 glproj03 on 27 Jan 2006 218 bytes little doc corrections in unittest.py
//this serves a certain purpose: to explain the meta-comments #startut
//1\n
//2\n
//3\n4\n5\n6\n7\n8\n9\n10
//\n
//#endut

{
	Int a = 0;
	while ( a < 10 ) {
		a = a+1;
		printInt(a);
		//newline
		printChar(10);
	}
}