Newer
Older
zweic / tests / 5 / var.zwei
{
	Int a = 10;
	{
		Int b = 7;
		b = 8;
		printInt(b);
	};
	a = 5;
	printInt(a);
}