var a = "before"; print a; // out: before a = "after"; print a; // out: after print a = "arg"; // out: arg print a; // out: arg