//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 }