var a = "global"; { fun assign() { a = "assigned"; } var a = "inner"; assign(); print(a); # expect: inner } print(a); # expect: assigned