var a = "global"; { fun showA() { print a; } showA(); var a = "inner v2"; showA(); }