import std; var a = 5; fn f { a = 6; } print(a); f(); #print(a);