Newer
Older
zweic / tests / 5 / var.zwei
@glproj03 glproj03 on 27 Jan 2006 161 bytes little doc corrections in unittest.py
//i wonder if this file is really correct...
//#startut
{
	Int a = 10;
	a = 5;
	{
		Int b = 7;
		b = 8;
		printInt(b);		
		//8
		a = 6;
	};
	printInt(a);
	//6
}