# Tests local scopes import std; var x = 5; { var x = 55; { var x = 22; print(x == 22); } print(x == 55); } print(x == 5);