let x; x = 1; function a(){ log(x); } { let x; x = 2; a(); }
run