Newer
Older
zweic / tests / 5 / while.zwei
{
	Int a = 0;
	while ( a < 10 ) {
		a = a+1;
		printInt(a);
	}
}